diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-03-10 19:50:02 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-03-10 19:50:02 -0800 |
commit | ac10e1de958cf99b5278bf65d802fda29f3e82e4 (patch) | |
tree | 1c97b9e101fdd89963d0c3255a3c33bfd91d087c | |
parent | [emacs] Remove code to support pants. (diff) | |
download | emacs.d-ac10e1de958cf99b5278bf65d802fda29f3e82e4.tar.gz |
[emacs] Fix settings for 'indent-tabs-mode'.
-rw-r--r-- | emacs.d/core/core-default.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs.d/core/core-default.el b/emacs.d/core/core-default.el index 42c4120..7756257 100644 --- a/emacs.d/core/core-default.el +++ b/emacs.d/core/core-default.el @@ -13,7 +13,8 @@ require-final-newline t vc-follow-symlinks t next-screen-context-lines 5 - tab-always-indent 'complete - indent-tabs-mode nil) + tab-always-indent 'complete) + +(setq-default indent-tabs-mode nil) (provide 'core-default) |