summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.org14
1 files changed, 14 insertions, 0 deletions
diff --git a/config.org b/config.org index 67fe670..6042d6f 100644 --- a/config.org +++ b/config.org
@@ -1016,6 +1016,20 @@ I need to break this config up and like, comment it better.
1016 (org-ellipsis " ⋯ ")) 1016 (org-ellipsis " ⋯ "))
1017#+end_src 1017#+end_src
1018 1018
1019*** Make bullets look like centered dots
1020
1021from [[https://zzamboni.org/post/beautifying-org-mode-in-emacs/][zzamboni.org]]
1022
1023#+begin_src emacs-lisp
1024 (font-lock-add-keywords
1025 'org-mode
1026 '(("^ *\\([-+]\\) "
1027 (0 (prog1 ()
1028 (compose-region (match-beginning 1)
1029 (match-end 1)
1030 "•"))))))
1031#+end_src
1032
1019*** Enable markdown export 1033*** Enable markdown export
1020 1034
1021#+begin_src emacs-lisp 1035#+begin_src emacs-lisp