From abe4aecbc89ee83b081a14e4c07935274a61c236 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 31 Dec 2013 00:48:16 +0100 Subject: 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. --- .emacs.d/init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.emacs.d') 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) -- cgit v1.2.3-54-g00ecf