aboutsummaryrefslogtreecommitdiff
path: root/modules
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
commit8b4f16367e21f7d19d72564d6aa6cec9a114cdc1 (patch)
tree2896b9db3f67255adc042ad402b1489ee6bf94d0 /modules
parentdac2e85a9de309add1ca832b8f1ef8f7d1fbf8aa (diff)
downloaddotemacs-8b4f16367e21f7d19d72564d6aa6cec9a114cdc1.tar.gz
dotemacs-8b4f16367e21f7d19d72564d6aa6cec9a114cdc1.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.
Diffstat (limited to 'modules')
-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 bd51828a9..fa1ca78eb 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 -------------------------------