diff options
author | Franck Cuny <franck@fcuny.net> | 2021-02-16 06:28:38 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-02-16 06:28:38 -0800 |
commit | c0a23387f216cf18e1c1b9c9b8204c058dd1b478 (patch) | |
tree | 97a1d09fdca7db4fe09c8376511c3b37386be646 /emacs | |
parent | emacs: UI things related to org-mode (diff) | |
download | emacs.d-c0a23387f216cf18e1c1b9c9b8204c058dd1b478.tar.gz |
emacs: UI things related to org-mode
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-org.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-org.el b/emacs/custom/fcuny-org.el index d993f0b..334898b 100644 --- a/emacs/custom/fcuny-org.el +++ b/emacs/custom/fcuny-org.el @@ -69,7 +69,7 @@ (org-startup-indented t) - (org-ellipsis "↴") + (org-ellipsis " ⋱") (org-cycle-separator-lines 0) (org-startup-folded 'content) (org-todo-keywords '((type "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED"))) @@ -130,6 +130,13 @@ (org-reverse-note-order t)) +(use-package org-bullets + :ensure t + :after (org) + :hook (org-mode . org-bullets-mode) + :custom (org-bullets-bullet-list '("❶" "❷" "❸" "❹" "❺" "❻" "❼" "❽" "❾" "❿"))) + + (use-package org-capture :ensure nil :after (org doct) |