diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-11 01:14:03 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-11 01:14:03 -0500 |
| commit | 9c261ea76b9e15798d06b925f0614511f5d869e8 (patch) | |
| tree | fb92a0dcb810bfa5c89ee03c9de235cf82323d28 | |
| parent | 1a25fada34763ed1ab1aa07c22d6305d1dedac2d (diff) | |
| download | dotemacs-9c261ea76b9e15798d06b925f0614511f5d869e8.tar.gz dotemacs-9c261ea76b9e15798d06b925f0614511f5d869e8.zip | |
refactor(constants): point roam-dir at the standalone roam repo
The org-roam KB moved out of the Syncthing share into its own git repo at ~/org/roam (cjennings.net:roam.git). journals-dir, inbox-file, and reading-notes-file derive from roam-dir and follow without edits.
| -rw-r--r-- | modules/user-constants.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/user-constants.el b/modules/user-constants.el index 43a23d79..15d9765e 100644 --- a/modules/user-constants.el +++ b/modules/user-constants.el @@ -125,8 +125,10 @@ fallback only.") (defconst org-dir (expand-file-name "org/" sync-dir) "This directory is synchronized across machines.") -(defconst roam-dir (expand-file-name "roam/" org-dir) - "The location of org-roam files.") +(defconst roam-dir (expand-file-name "org/roam/" user-home-dir) + "The location of org-roam files. +A standalone git repo (cjennings.net:roam.git), no longer inside the +Syncthing-synced `org-dir' — see the 2026-06-10 transport migration.") (defconst journals-dir (expand-file-name "journal/" roam-dir) "The location of org-roam dailies or journals files.") |
