From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Thu, 13 Aug 2015 12:41:31 +0000 (+0530)
Subject: turn off electric indent
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/components/com_hotproperty/css/cyclelanguage?a=commitdiff_plain;h=1aeda00ed7a9f1e14a2e4e2763fa4ef74137a8a4;p=.emacs.d.git

turn off electric indent
---

diff --git a/init.el b/init.el
index 19d312a..47ba8a4 100644
--- 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
@@ -177,9 +177,12 @@
 
 ;; 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))