fix(org-modern): remove org-modern-checkbox t -- wrong type, expected alist not bool

Error: (wrong-type-argument sequencep t) was preventing org-modern from loading.
org-modern-checkbox expects an alist char->string, not boolean t.
Default value already provides correct checkbox replacements.
This commit is contained in:
2026-02-23 19:52:05 +01:00
parent af11e832de
commit b8b149cfe7

View File

@@ -1155,8 +1155,8 @@ Otherwise: runs interactive ement-connect, then opens rooms after sync."
:config
(setq org-modern-star [""]
org-modern-hide-stars "·"
org-modern-table nil
org-modern-checkbox t))
org-modern-table nil))
;; org-modern-checkbox: default alist value is correct (☑ ☒ ☐), no override needed
;;; ============================================================