From b65ff13116ed1b2d9fd83bd7a0211eaa3c988782 Mon Sep 17 00:00:00 2001 From: earnest ma Date: Fri, 29 Jul 2022 20:46:58 -0400 Subject: [PATCH] Doom: Work around projectile fd issue --- doom/.config/doom/+projects.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doom/.config/doom/+projects.el b/doom/.config/doom/+projects.el index 5728cae..4864cfe 100644 --- a/doom/.config/doom/+projects.el +++ b/doom/.config/doom/+projects.el @@ -9,7 +9,11 @@ Most of them are managed using `ghq' in ~/ghq/, however there are also some projects in other locations.") (after! projectile - (setq projectile-project-search-path project-locations)) + (setq projectile-project-search-path project-locations) + ;; TODO Work-around https://github.com/doomemacs/doomemacs/issues/6600 + ;; https://github.com/doomemacs/doomemacs/pull/6597 + ;; https://github.com/bbatsov/projectile/issues/1788 + (setq projectile-generic-command "fd . -0 --type f --color=never")) (after! magit (add-hook! 'after-save-hook #'magit-after-save-refresh-status)