diff options
author | Franck Cuny <franck@fcuny.net> | 2021-03-14 19:38:34 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-03-14 19:38:34 -0700 |
commit | f36b7916a95e5d267bfe34b8e18b0598e7b08792 (patch) | |
tree | 9702cae1ab91d32e2a9da874062683fbab33aa1b /emacs | |
parent | org: hide emphasis markup (diff) | |
download | emacs.d-f36b7916a95e5d267bfe34b8e18b0598e7b08792.tar.gz |
org: simplify a bit the look
Stop using a special character for the ellipsis, and use the standard org-bullets configuration.
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-org.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/emacs/custom/fcuny-org.el b/emacs/custom/fcuny-org.el index 393fc47..64f66e3 100644 --- a/emacs/custom/fcuny-org.el +++ b/emacs/custom/fcuny-org.el @@ -72,7 +72,6 @@ (org-startup-indented t) - (org-ellipsis " ⋱") (org-cycle-separator-lines 0) (org-startup-folded 'content) (org-todo-keywords '((type "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED"))) @@ -136,9 +135,7 @@ (use-package org-bullets :ensure t :after (org) - :hook (org-mode . org-bullets-mode) - :custom (org-bullets-bullet-list '("❶" "❷" "❸" "❹" "❺" "❻" "❼" "❽" "❾" "❿"))) - + :hook (org-mode . org-bullets-mode)) (use-package org-capture :ensure nil |