summary refs log tree commit diff
path: root/emacs/init.el
diff options
context:
space:
mode:
authornoa2024-11-11 12:02:37 +0800
committernoa2024-11-11 12:02:37 +0800
commit139a3ab6b64c982730dbd0a8f5069e35c959507e (patch)
treee2242e7c046cc1a6d747ef9770ab7737203d6ee9 /emacs/init.el
parent9977294da23fde1de259ec982f2c794e440df446 (diff)
Disable dired-du and install dirvish for file management
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el6
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