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
commit1aa16061b6512bfe240eeb47a6993a526ff718e9 (patch)
tree1b2c6b346007118d1d03abe6e55f59cb961aa355
parentbc720c03e566003835da2c631b54953d97953ee2 (diff)
downloaddotemacs-1aa16061b6512bfe240eeb47a6993a526ff718e9.tar.gz
dotemacs-1aa16061b6512bfe240eeb47a6993a526ff718e9.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 -------------------------------