aboutsummaryrefslogtreecommitdiff
path: root/modules/user-constants.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user-constants.el')
-rw-r--r--modules/user-constants.el18
1 files changed, 5 insertions, 13 deletions
diff --git a/modules/user-constants.el b/modules/user-constants.el
index 43a23d79f..dab12dcbe 100644
--- a/modules/user-constants.el
+++ b/modules/user-constants.el
@@ -53,16 +53,6 @@ mail, chime, etc."
(defvar user-mail-address "c@cjennings.net"
"The user's email address.")
-;; ---------------------------- Buffer Status Colors ---------------------------
-
-(defconst cj/buffer-status-colors
- '((read-only . "#f06a3f") ; red – buffer is read-only
- (overwrite . "#c48702") ; gold – overwrite mode
- (modified . "#64aa0f") ; green – modified & writeable
- (unmodified . "#ffffff")) ; white – unmodified & writeable
- "Alist mapping buffer states to their colors.
-Used by cursor color, modeline, and other UI elements.")
-
;; --------------------------- Media File Extensions ---------------------------
(defvar cj/audio-file-extensions
@@ -125,8 +115,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.")
@@ -149,7 +141,7 @@ fallback only.")
(defconst music-dir (expand-file-name "music/" user-home-dir)
"The location to save your music files.")
-(defconst website-dir (expand-file-name "projects/website/" user-home-dir)
+(defconst website-dir (expand-file-name "code/website/" user-home-dir)
"Root directory of the Hugo website project.")