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 | 9439170a852d74cbafe792a0b0e163ebbc6ff365 (patch) | |
| tree | 0d002ae24c4b6e09c8d87b114ab7c9cff4855de6 /modules | |
| parent | 161da80ab811dd2d3d31ea32ad671c467af35970 (diff) | |
| download | dotemacs-9439170a852d74cbafe792a0b0e163ebbc6ff365.tar.gz dotemacs-9439170a852d74cbafe792a0b0e163ebbc6ff365.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.
Diffstat (limited to 'modules')
| -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 43a23d79f..15d9765ed 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.") |
