]> git.rkrishnan.org Git - .emacs.d.git/commitdiff
turn off electric indent
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Thu, 13 Aug 2015 12:41:31 +0000 (18:11 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Thu, 13 Aug 2015 12:41:31 +0000 (18:11 +0530)
init.el

diff --git a/init.el b/init.el
index 19d312ae8927c9e06880da5a8c2f174894d9ef6f..47ba8a4b4c6330db06985f9b5f76ea1312cd5902 100644 (file)
--- a/init.el
+++ b/init.el
@@ -59,7 +59,7 @@
     (package-install package)))
 
 ;; tangotango
-;; (load-theme 'tangotango t)
+(load-theme 'tangotango t)
 ;; (load-theme 'leuven t)
 
 ;; erc
 
 ;; line-number-mode
 (global-linum-mode t)
-(global-hl-line-mode t)
+(global-hl-line-mode 0)
 
 ;; fci -- fill-column-indicator
 (setq fci-rule-column 81)
 (setq fci-rule-width 1)
 (setq fci-rule-color "darkblue")
+
+;; turn off electric-indent-mode
+(when (fboundp 'electric-indent-mode) (electric-indent-mode -1))