By starting (Gnu/vanilla) Emacs with the .emacs at the bottom of this file I get
- headings and subheadings that use larger fonts, obviating the need to typeset into HTML or LaTeX for pleasant reading, and
- improved fonts for bullets.
But there are two problems:
- the height of the bullet is larger than the heading, and
- the bullets are similar, unlike what the reference page promises.
How can I adjust the fonts and sizes of bullets in org superstar?
I'm on macOS Ventura. You'll need to adjust Monaco below to your favorite font to start with this .emacs.
(add-to-list 'default-frame-alist '(background-color . "black"))
(add-to-list 'default-frame-alist '(foreground-color . "white"))
(blink-cursor-mode 0)
(defvar org-startup-indented)
(setq org-startup-indented t)
(defvar org-indent-indentation-per-level)
(setq org-indent-indentation-per-level 4)
(set-frame-font "Monaco 32")
(require 'org-superstar)
(add-hook 'org-mode-hook (lambda () (org-superstar-mode 1)))
(custom-set-faces
'(org-level-1 ((t (:inherit outline-1 :height 2.0))))
'(org-level-2 ((t (:inherit outline-2 :height 1.5))))
'(org-level-3 ((t (:inherit outline-3 :height 1.2))))
'(org-level-4 ((t (:inherit outline-4 :height 1.0))))
'(org-level-5 ((t (:inherit outline-5 :height 1.0))))
)

