mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
emacs/dired: add fd-dired for faster find-dired
...if you have fd installed.
This commit is contained in:
@ -119,3 +119,9 @@ we have to clean it up ourselves."
|
|||||||
;; Disable the prompt about whether I want to kill the Dired buffer for a
|
;; Disable the prompt about whether I want to kill the Dired buffer for a
|
||||||
;; deleted directory. Of course I do!
|
;; deleted directory. Of course I do!
|
||||||
(setq dired-clean-confirm-killing-deleted-buffers nil))
|
(setq dired-clean-confirm-killing-deleted-buffers nil))
|
||||||
|
|
||||||
|
|
||||||
|
(use-package! fd-dired
|
||||||
|
:when (executable-find doom-projectile-fd-binary)
|
||||||
|
:defer t
|
||||||
|
:init (advice-add #'find-dired :override #'fd-dired))
|
||||||
|
@ -8,3 +8,4 @@
|
|||||||
(package! ranger))
|
(package! ranger))
|
||||||
(when (featurep! +icons)
|
(when (featurep! +icons)
|
||||||
(package! all-the-icons-dired))
|
(package! all-the-icons-dired))
|
||||||
|
(package! fd-dired)
|
||||||
|
Reference in New Issue
Block a user