Ensure doom-projectile-fd-binary is never nil
This commit is contained in:
parent
03a4461d3b
commit
e0fe2a85d1
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@ Emacs.")
|
|||
"If non-nil, non-projects are purged from the cache on `kill-emacs-hook'.")
|
||||
|
||||
(defvar doom-projectile-fd-binary
|
||||
(cl-find-if #'executable-find '("fd" "fdfind"))
|
||||
(or (cl-find-if #'executable-find '("fd" "fdfind"))
|
||||
"fd")
|
||||
"name of `fd-find' executable binary")
|
||||
|
||||
(defvar doom-projectile-cache-timer-file (concat doom-cache-dir "projectile.timers")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue