summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/init.el')
-rw-r--r--emacs/.emacs.d/init.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 597e692..62b6791 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -500,16 +500,13 @@
(defun my-c-mode-common-hook ()
"C mode for people with taste."
- (require 'smart-tabs-mode)
(auto-fill-mode 1)
(abbrev-mode -1)
(set-fill-column 79)
- (smart-tabs-mode-enable)
(setq tab-width 4)
(setq indent-tabs-mode t)
(setq truncate-lines t)
(setq show-trailing-whitespace t)
- (smart-tabs-advice c-indent-line c-basic-offset)
(c-set-style "drobilla"))
(add-hook 'c-mode-common-hook 'my-c-mode-common-hook)