diff options
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index f86fead..cea6710 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -295,12 +295,18 @@ 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 :after dired :custom (dired-du-size-format t) :hook (dired-mode . dired-du-mode)) +(use-package dirvish + :ensure t + :custom + (dirvish-override-dired-mode t)) + ;; Some tramp settings. (setopt remote-file-name-inhibit-locks t) (use-package tramp |