diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/emacs/init.el b/emacs/init.el index 0d982f5..362787e 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -263,11 +263,10 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." ;; Show the recursive size of directories (use-package dired-du :disabled t - :ensure t + :hook (dired-mode . dired-du-mode) :after dired :custom - (dired-du-size-format t) - :hook (dired-mode . dired-du-mode)) + (dired-du-size-format t)) ;; Some tramp settings. (setopt remote-file-name-inhibit-locks t) |