diff options
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 21 |
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 | ||
1051 | from [[https://zzamboni.org/post/beautifying-org-mode-in-emacs/][zzamboni.org]] | 1051 | from [[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 |