aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-06 01:20:40 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-06 01:20:40 -0400
commitaba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5 (patch)
tree33b72da37e405b29ebd7a7561f18a620aa7a0462
parentAdjust font sizes (diff)
downloadmmosmacs-aba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5.tar.gz
mmosmacs-aba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5.tar.bz2
mmosmacs-aba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5.zip
Make org heading bullets look nicer with `org-bullets-mode`
-rw-r--r--init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/init.el b/init.el
index e7731b6..1b1155f 100644
--- a/init.el
+++ b/init.el
@@ -431,6 +431,14 @@
431 (mm/org-font-setup)) 431 (mm/org-font-setup))
432 432
433 433
434;; Make org heading bullets look nicer
435(use-package org-bullets
436 :straight t
437 :hook (org-mode . org-bullets-mode)
438 :custom
439 (org-bullets-bullet-list '("•")))
440
441
434 442
435 443
436;; --------------------------------------------------------------------- 444;; ---------------------------------------------------------------------