(Emacs/config)+enable caching in projectile

Fixes issue where opening a project for the first time via "SPC-p-p"
then selecting a file was very laggy.
This commit is contained in:
2023-10-16 08:42:45 +01:00
parent f6ab044eb2
commit 434014a47d

View File

@@ -540,7 +540,8 @@ a 'project'.
"<f6>" #'projectile-configure-project
"<f7>" #'projectile-test-project)
:init
(setq projectile-tags-command "ctags -Re -f \"%s\" %s \"%s\""))
(setq projectile-tags-command "ctags -Re -f \"%s\" %s \"%s\""
projectile-enable-caching t))
#+end_src
*** Counsel projectile
Counsel integration for projectile commands, very nice.