From 0cb4e617cf25b033f30f82c40e212fab9bc0c1b7 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 2 Oct 2017 04:18:34 -0400 Subject: [PATCH] Disable indent-tabs-mode by default I've had to turn it off manually waaay too often --- .emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 0a2203e..826ac0d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -4,7 +4,8 @@ c-basic-offset 4 sgml-basic-offset 4) (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))) ;;;; various options