fix indent c-mode

This commit is contained in:
Jesús 2019-02-02 11:28:02 -05:00
parent 5b3dff3c2e
commit 57da3246a8
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -4,6 +4,15 @@
;;; Code: ;;; Code:
;;----------------------------------------------------------------------------
;; c Mode
;;----------------------------------------------------------------------------
(add-hook 'c-mode-hook
(lambda ()
(setq indent-tabs-mode t)
(setq c-basic-offset 4)
(setq tab-width 4)))
;;---------------------------------------------------------------------------- ;;----------------------------------------------------------------------------
;; c++ Mode ;; c++ Mode
;;---------------------------------------------------------------------------- ;;----------------------------------------------------------------------------