summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-24 00:52:49 -0500
committerCraig Jennings <c@cjennings.net>2026-05-24 00:52:49 -0500
commit31dc4b9ed13a6f8e417f82ada8329729997828c9 (patch)
tree94a50ee8c67911713d90ce47cd90a8cf63136531
parent85eb9bfa42bb8d36fef6d05211a266da06894d17 (diff)
downloaddotemacs-31dc4b9ed13a6f8e417f82ada8329729997828c9.tar.gz
dotemacs-31dc4b9ed13a6f8e417f82ada8329729997828c9.zip
feat(org-tidy): mark collapsed property drawers with a middle dot
org-tidy's default inline marker is the music sharp (♯), which reads as a full-size # next to a heading. I set org-tidy-properties-inline-symbol to a middle dot (·) so the collapsed drawer is marked with something far less visually heavy.
-rw-r--r--modules/org-config.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/org-config.el b/modules/org-config.el
index bd51828a..fa1ca78e 100644
--- a/modules/org-config.el
+++ b/modules/org-config.el
@@ -278,7 +278,8 @@ especially in tables with long URLs)."
(use-package org-tidy
:hook (org-mode . org-tidy-mode)
:custom
- (org-tidy-properties-style 'inline)) ;; 'inline | 'fringe | 'invisible
+ (org-tidy-properties-style 'inline) ;; 'inline | 'fringe | 'invisible
+ (org-tidy-properties-inline-symbol "·")) ;; middle dot, subtler than the default sharp
;; ------------------------------- Org-Checklist -------------------------------