Commit 86c79577f1a4

Vincent Demeester <vincent@sbr.pm>
2020-04-17 14:42:26
config-projects.el: disable automatic project…
… tracking, by setting projectile-track-known-projects-automatically to nil. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent b424675
Changed files (1)
tools
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)