aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
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