diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-06 01:20:40 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-06 01:20:40 -0400 |
commit | aba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5 (patch) | |
tree | 33b72da37e405b29ebd7a7561f18a620aa7a0462 | |
parent | Adjust font sizes (diff) | |
download | mmosmacs-aba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5.tar.gz mmosmacs-aba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5.tar.bz2 mmosmacs-aba4dfaf1b96102a5e5c6bfcf0b9679aa446f4f5.zip |
Make org heading bullets look nicer with `org-bullets-mode`
-rw-r--r-- | init.el | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 | ;; --------------------------------------------------------------------- |