aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-10-07 17:26:41 +0200
committerGravatar Tom Willemse2016-10-07 17:26:41 +0200
commit406d88bdd0f0c68bea833d5b403d99a27565e658 (patch)
treedb7bd7026675962043fd1a89520507cbc71c8ff8 /emacs
parent79a7d1fc74c86f3f57685ca263a812c2bbe83287 (diff)
downloadnew-dotfiles-406d88bdd0f0c68bea833d5b403d99a27565e658.tar.gz
new-dotfiles-406d88bdd0f0c68bea833d5b403d99a27565e658.zip
Store known projectile projects in data dir
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 326478f..2d89f94 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -672,6 +672,13 @@ To start off, first I need to enable lexical binding.
(format " P[%s]" (projectile-project-name))))))
#+END_SRC
+ Store projectile files in my data dir.
+
+ #+BEGIN_SRC emacs-lisp
+ (setq projectile-known-projects-file
+ (oni:data-location "projectile-bookmarks.eld"))
+ #+END_SRC
+
Enable it globally so I can always switch to/from projects.
#+BEGIN_SRC emacs-lisp