Disable indent-tabs-mode by default

I've had to turn it off manually waaay too often
This commit is contained in:
Adam Goldsmith 2017-10-02 04:18:34 -04:00
parent 2c96544d9a
commit 0cb4e617cf

View File

@ -4,7 +4,8 @@
c-basic-offset 4 c-basic-offset 4
sgml-basic-offset 4) sgml-basic-offset 4)
(c-set-offset `inline-open 0) (c-set-offset `inline-open 0)
(setq-default tab-width 4) (setq-default tab-width 4
indent-tabs-mode nil)
(add-hook 'sh-mode-hook (lambda () (setq tab-width 4))) (add-hook 'sh-mode-hook (lambda () (setq tab-width 4)))
;;;; various options ;;;; various options