diff options
author | 2020-09-27 12:38:49 -0400 | |
---|---|---|
committer | 2020-09-27 13:38:17 -0400 | |
commit | 0596e3cf82c0d9a5bf898e027824c0a0229c65fb (patch) | |
tree | 26a50c9a5b730e46c3d2ae0e8abe255dc57d7169 /lisp/bandali-projectile.el | |
parent | 944ef93215ad453a4cdab9a2a6ebe3144b85b590 (diff) | |
download | configs-0596e3cf82c0d9a5bf898e027824c0a0229c65fb.tar.gz configs-0596e3cf82c0d9a5bf898e027824c0a0229c65fb.tar.xz configs-0596e3cf82c0d9a5bf898e027824c0a0229c65fb.zip |
Drop no-littering
Diffstat (limited to '')
-rw-r--r-- | lisp/bandali-projectile.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/bandali-projectile.el b/lisp/bandali-projectile.el index 41504e6..dbef93e 100644 --- a/lisp/bandali-projectile.el +++ b/lisp/bandali-projectile.el @@ -29,6 +29,7 @@ :defer 0.5 :bind-keymap ("C-c p" . projectile-command-map) :config + (make-directory (b/var "projectile/") t) (projectile-mode) (defun b/projectile-mode-line-fun () @@ -60,7 +61,9 @@ "C-c p x" "projectile/execute" "C-c p 4" "projectile/other-window")) :custom + (projectile-cache-file (b/var "projectile/cache.el")) (projectile-completion-system 'ivy) + (projectile-known-projects-file (b/var "projectile/known-projects.el")) (projectile-mode-line-prefix " proj")) (provide 'bandali-projectile) |