home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 86c79577f1a414d9ccabe89406d4fea0df45940c
parent b424675ac3c25bf2c6517cfc6a471460a6a2ca23
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 17 Apr 2020 14:42:26 +0200

config-projects.el: disable automatic project…

… tracking, by setting projectile-track-known-projects-automatically
to nil.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-projects.el | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tools/emacs/config/config-projects.el b/tools/emacs/config/config-projects.el @@ -30,7 +30,9 @@ projectile-vc) :bind-keymap ("C-c p" . projectile-command-map) :config - (setq projectile-completion-system 'default) + (setq-default projectile-completion-system 'default + ;; Do not track known projects automatically, instead call projectile-add-known-project + projectile-track-known-projects-automatically nil) (projectile-mode) ;; Remove dead projects when Emacs is idle (run-with-idle-timer 10 nil #'projectile-cleanup-known-projects)