emacs/dired: add fd-dired for faster find-dired

...if you have fd installed.
This commit is contained in:
Henrik Lissner 2019-10-19 16:33:46 -04:00
parent 9b25582be1
commit 2478271583
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395
2 changed files with 7 additions and 0 deletions

View File

@ -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
;; deleted directory. Of course I do!
(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))

View File

@ -8,3 +8,4 @@
(package! ranger))
(when (featurep! +icons)
(package! all-the-icons-dired))
(package! fd-dired)