summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2013-10-21 07:55:55 +0100
committerAlan Pearce2013-10-21 07:55:55 +0100
commita9e7dbba3ee826f807546e8c94df2b17e5da6518 (patch)
treea37d30ca8ce383efed57cdc972edb675cc7dad45 /emacs
parentec791b21441395aab300552142378ff87aa2579d (diff)
downloaddotfiles-a9e7dbba3ee826f807546e8c94df2b17e5da6518.tar.lz
dotfiles-a9e7dbba3ee826f807546e8c94df2b17e5da6518.tar.zst
dotfiles-a9e7dbba3ee826f807546e8c94df2b17e5da6518.zip
Emacs: eagerly load dired and dired+
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 2c475fb..7704546 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -345,7 +345,6 @@ Values: `desktop', `server', `laptop'")
 
 ;;;; Directory browsing
 (use-package dired
-  :defer t
   :config (progn
             (bind-key "<return>" #'dired-find-file dired-mode-map)
             (bind-key "^" (lambda () (interactive) (find-alternate-file "..")) dired-mode-map)
@@ -356,7 +355,6 @@ Values: `desktop', `server', `laptop'")
             (put 'dired-find-alternate-file 'disabled nil)))
 
 (use-package dired+
-  :defer t
   :ensure t
   :config (diredp-toggle-find-file-reuse-dir 1))