aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-15 02:28:50 -0500
committerCraig Jennings <c@cjennings.net>2026-06-15 02:28:50 -0500
commit36eb7b067a1c1e092b4292262bbc2e664c11745f (patch)
treef2442d02545ab97aa2281e5977036acff8c78aae /init.el
parent9f7137a2b5c634bf3a5988189419988d4fe89e9e (diff)
downloaddotemacs-36eb7b067a1c1e092b4292262bbc2e664c11745f.tar.gz
dotemacs-36eb7b067a1c1e092b4292262bbc2e664c11745f.zip
feat(org): themeable agenda header-row faces via org-faces-config
Each TODO keyword and priority cookie gets its own named face instead of sharing org's built-in org-todo / org-done / org-priority. org-faces-config.el defines org-faces-<keyword> and org-faces-priority-a..d (plus -dim variants for auto-dim), each with a real default color, and wires them through org-todo-keyword-faces and org-priority-faces once org loads. The file is org-faces-config, not org-faces, because org ships its own org-faces feature that the bare name would shadow. This re-introduces the per-keyword/priority coloring that was stripped earlier, now as a named, theme-agnostic layer a theme can override. The design and the four resolved decisions are in docs/design/org-faces-spec.org; a theme-studio "org-faces" app and the auto-dim repoint follow in later phases.
Diffstat (limited to 'init.el')
-rw-r--r--init.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/init.el b/init.el
index fb6d55af2..d90185068 100644
--- a/init.el
+++ b/init.el
@@ -122,6 +122,7 @@
;; ---------------------------------- Org Mode ---------------------------------
(require 'org-config) ;; basic org-mode settings
+(require 'org-faces-config) ;; custom themeable faces for agenda keywords + priorities
(require 'org-agenda-config) ;; agenda, task tracking, and notifications
(require 'org-babel-config) ;; org-mode prog blocks; literate programming
(require 'org-capture-config)