summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRavi R Kiran <aine.marina@gmail.com>2013-12-30 23:19:15 (GMT)
committerRavikiran Rajagopal <aine.marina@gmail.com>2013-12-30 23:19:15 (GMT)
commiteca56122cbd429b9b31a2598a173643e09c66337 (patch)
tree300bab6e336a0c05a63e2e0966b056456c7fc0a6
parentd6fc7b6d5af9ffe9e48bab6de93c0166da65ee63 (diff)
downloaddotemacs-eca56122cbd429b9b31a2598a173643e09c66337.zip
dotemacs-eca56122cbd429b9b31a2598a173643e09c66337.tar.gz
dotemacs-eca56122cbd429b9b31a2598a173643e09c66337.tar.bz2
Automatic indentation of newlines and yanks
-rw-r--r--init.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/init.el b/init.el
index 3d9f549..2e3d2eb 100644
--- a/init.el
+++ b/init.el
@@ -82,6 +82,13 @@
(load-file (ravi/emacs-file "local.el"))
)
+;; Auto indent mode must be enabled before autopair and yasnippet
+(use-package auto-indent-mode
+ :config (auto-indent-global-mode)
+ :diminish auto-indent-mode
+ :ensure t
+ )
+
(require 'ravi-init-ido)
(require 'ravi-init-marks)
(require 'ravi-init-appearance)