summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-12-31 00:48:16 +0100
committerGravatar Tom Willemse2013-12-31 00:48:16 +0100
commitabe4aecbc89ee83b081a14e4c07935274a61c236 (patch)
tree44439c84d7d47bd1fa5b6ed29f1e55ae73780f0c /.emacs.d
parent987a4ccc7c37fc06be25a477cfff2484c8f8b214 (diff)
downloademacs-abe4aecbc89ee83b081a14e4c07935274a61c236.tar.gz
emacs-abe4aecbc89ee83b081a14e4c07935274a61c236.zip
Explicitly turn on ido-mode
Sometimes it seems my init.el gets re-evaluated, `ido-mode' would turn on and off without an explicit argument. Passing `1' as the first argument makes sure it's always turned on.
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index a669c40..3c9c39f 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -1368,17 +1368,17 @@ If no direction is given, don't split."
(load (expand-file-name "~/.local/share/quicklisp/slime-helper.el")))
(load "eap-autoloads"))
-(ido-mode)
-(minibuffer-electric-default-mode)
(auto-insert-mode)
+(electric-indent-mode -1)
+(ido-mode 1)
+(minibuffer-electric-default-mode)
(savehist-mode)
(show-paren-mode)
(winner-mode)
+
(help-at-pt-set-timer)
(windmove-default-keybindings)
-(electric-indent-mode -1)
-
;;;; Custom
;; Finally, load any `customize' settings.
(load custom-file)