summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2024-08-04 15:37:30 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2024-08-04 15:37:30 +0100
commitdda1bbd0ab6b69a39af43fea5f4459e5fc5e37a5 (patch)
tree6dd075c3495b4afcb4dd52746b218d2967a17a49 /emacs
parent3cacfff425c846c2da3208e12e7d2db170232f46 (diff)
emacs: Put Org ID locations file in data directory
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index b90aea5..a723f0f 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -243,7 +243,9 @@
(use-package org-roam
:config (org-roam-db-autosync-enable)
:bind ("C-c n f" . org-roam-node-find)
- :custom (org-roam-db-location (my/data-file-name "org-roam.db"))
+ :custom
+ ((org-id-locations-file (my/data-file-name "org-id-locations"))
+ (org-roam-db-location (my/data-file-name "org-roam.db")))
:ensure t)