all repos — nixfiles @ a4c0bc93085ff47092115fdf8c9cc1ac7dc70eab

System and user configuration, managed by nix and home-manager

Emacs: fix ido initialisation
Alan Pearce alan@alanpearce.co.uk
Sun, 29 Sep 2013 21:08:15 +0100
commit

a4c0bc93085ff47092115fdf8c9cc1ac7dc70eab

parent

42d7e04731c514c4abc9aa2867a4718d327a72d2

1 files changed, 8 insertions(+), 7 deletions(-)

jump to
M emacs/init.elemacs/init.el
@@ -550,16 +550,17 @@ :config (setq helm-idle-delay .1                 helm-input-idle-delay .1))
 
 (use-package ido
-  :init (bind-key* "C-x C-f" #'ido-find-file)
   :bind (("C-x b"   . ido-switch-buffer))
+  :init (progn
+          (setq ido-save-directory-list-file (expand-file-name "ido-state" user-emacs-directory))
+          (bind-key* "C-x C-f" #'ido-find-file)
+          (ido-mode 1))
   :config (progn
-            (ido-mode 1)
-            (setq ido-decorations (quote ("\n›" "" "\n " "\n …" "[" "]" " [No match]" " [Matched]" " [Not readable]" " [Too big]" " [Confirm]")))
-            (setq ido-auto-merge-delay-time 99999
+            (setq ido-decorations (quote ("\n›" "" "\n " "\n …" "[" "]" " [No match]" " [Matched]" " [Not readable]" " [Too big]" " [Confirm]"))
+                  ido-auto-merge-delay-time 99999
                   ido-enable-flex-matching t
-                  ido-use-virtual-buffers t
-                  ido-save-directory-list-file (expand-file-name user-emacs-directory
-                                                                 "ido-state"))
+                  ido-use-virtual-buffers t)
+
             (ido-init-completion-maps)
             (defun ido-manual-merge ()
               (interactive)