From 9958692fdd893fc528eb6a01b7884303c00dc978 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sun, 9 Oct 2011 00:24:41 +0300 Subject: [PATCH] enabled global electric modes --- prelude-editor.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/prelude-editor.el b/prelude-editor.el index 4216c7c..175e930 100644 --- a/prelude-editor.el +++ b/prelude-editor.el @@ -68,6 +68,11 @@ try-complete-lisp-symbol-partially try-complete-lisp-symbol)) +;; smart indenting and pairing for all +(electric-pair-mode t) +(electric-indent-mode t) +(electric-layout-mode t)) + ;; meaningful names for buffers with the same name (require 'uniquify) (setq uniquify-buffer-name-style 'forward)