summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-12-03 21:58:39 -0600
committerCase Duckworth2020-12-03 21:58:39 -0600
commit3c1d815914cab6c871fc1ef27fcc0b0e4d8009ee (patch)
treec3f38282e868fe5dfadb5b9fe58c2d7c4950342e /config.org
parentAdd KeePassXC (diff)
downloademacs-3c1d815914cab6c871fc1ef27fcc0b0e4d8009ee.tar.gz
emacs-3c1d815914cab6c871fc1ef27fcc0b0e4d8009ee.zip
Add org-superstar
Diffstat (limited to 'config.org')
-rw-r--r--config.org21
1 files changed, 20 insertions, 1 deletions
diff --git a/config.org b/config.org index c9011c7..32a2db4 100644 --- a/config.org +++ b/config.org
@@ -1050,7 +1050,7 @@ I need to break this config up and like, comment it better.
1050 1050
1051from [[https://zzamboni.org/post/beautifying-org-mode-in-emacs/][zzamboni.org]] 1051from [[https://zzamboni.org/post/beautifying-org-mode-in-emacs/][zzamboni.org]]
1052 1052
1053#+begin_src emacs-lisp 1053#+begin_src emacs-lisp :tangle no
1054 (font-lock-add-keywords 1054 (font-lock-add-keywords
1055 'org-mode 1055 'org-mode
1056 '(("^ *\\([-+]\\) " 1056 '(("^ *\\([-+]\\) "
@@ -1060,6 +1060,25 @@ from [[https://zzamboni.org/post/beautifying-org-mode-in-emacs/][zzamboni.org]]
1060 "•")))))) 1060 "•"))))))
1061#+end_src 1061#+end_src
1062 1062
1063*** [[https://github.com/integral-dw/org-superstar-mode][org-superstar]]
1064
1065#+begin_src emacs-lisp
1066 (use-package org-superstar
1067 :custom
1068 (org-superstar-headline-bullets-list
1069 '(?❧ ?✪ ?③ ?④ ?⑤ ?⑥ ?⑦ ?⑧ ?⑨ ?●))
1070 (org-superstar-cycle-headline-bullets nil)
1071 (org-superstar-item-bullet-alist
1072 '((?* . ?★)
1073 (?+ . ?‣)
1074 (?- . ?•)))
1075 :custom-face
1076 (org-superstar-header-bullet
1077 ((t (:weight normal))))
1078 :hook
1079 (org-mode . org-superstar-mode))
1080#+end_src
1081
1063*** Enable markdown export 1082*** Enable markdown export
1064 1083
1065#+begin_src emacs-lisp 1084#+begin_src emacs-lisp