From 40f30013b650c97d35ff347c4c6d91f05f23b26f Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Wed, 8 Dec 2021 14:02:33 -0800 Subject: [PATCH] Workaround bug in org-superstar I guess the `org-superstar-todo-bullet-alist` doesn't work with a simple non-nil, so I'll look into it later. --- ha-org-word-processor.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ha-org-word-processor.org b/ha-org-word-processor.org index d322308..d0124bb 100644 --- a/ha-org-word-processor.org +++ b/ha-org-word-processor.org @@ -63,14 +63,14 @@ Now that headers are noticeable, I have no reason to see a number of asterisks. #+BEGIN_SRC emacs-lisp (use-package org-superstar :init - (add-hook 'org-mode 'org-superstar-mode) (setq org-superstar-headline-bullets-list '("▶") - org-superstar-special-todo-items t + org-superstar-special-todo-items nil org-superstar-todo-bullet-alist t org-superstar-prettify-item-bullets t org-superstar-item-bullet-alist '((42 . "⊙") ; * (43 . "⁍") ; + - (45 . "•")))) + (45 . "•"))) + :hook org-mode) #+END_SRC Oh, and as I indent lists, they should change the /bulleting/ in a particular sequence. If I begin with an =*= asterisk, I walk down the chain, but with the dashed bullets (my default choice), I just stay with dashed bullets. Numeric bullets should cycle: