summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2024-04-13 16:28:30 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2024-04-13 16:28:30 +0100
commit2dfff3413e3b11a486c32d237c5f3a377d55b707 (patch)
tree5f6c0c75fdd459072d79d1b3b0015ae46b638b0d
parent5c39b877f6ada5ea79c31eb93cd4c3c1ff64823b (diff)
emacs: Put ‘project-list-file’ in cache directory
-rw-r--r--emacs/init.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 022149b..626d18d 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -72,6 +72,13 @@
(keymap-global-set "C-x C-b" #'ibuffer)
+;; Project Management
+
+(use-package project
+ :custom (project-list-file (my/cache-file-name "projects"))
+ :defer t)
+
+
;; Search and Completion Management
(use-package consult