diff options
author | fpi | 2020-09-18 15:34:41 +0200 |
---|---|---|
committer | fpi | 2020-09-28 12:01:50 +0200 |
commit | 7132df64865d81a89472f1c1dae19e6b0ce35dbc (patch) | |
tree | 1b0ce79a6915d3f099df07c383398e9d07d95026 | |
parent | Add header-info package (diff) |
Try setting projectile cache & disable it for now
projectile causes lag on remote files due to repeatedly calling `file-remote-p`
-rw-r--r-- | emacs-init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index 6883fa3..e07a8ab 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2825,8 +2825,9 @@ some safe local variable values. (setq projectile-indexing-method 'alien) (setq projectile-enable-caching t) (setq projectile-completion-system 'ido) + (setq projectile-file-exists-local-cache-expire (* 5 60)) :config - (projectile-mode 1) + ;; (projectile-mode 1) :bind (("C-c p" . projectile-command-map))) #+END_SRC ** Working with buffers |