aboutsummaryrefslogtreecommitdiff
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
commitfa9b9463aba6dc73fc4266a8e0069506009ce0e0 (patch)
tree725180f412c4b7d3457d19c11a5e252853795299
parent27ce2fe4d88f7d0b2ef92e1ff91c111b8a8b8502 (diff)
downloaddotemacs-fa9b9463aba6dc73fc4266a8e0069506009ce0e0.tar.gz
dotemacs-fa9b9463aba6dc73fc4266a8e0069506009ce0e0.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 -------------------------------