summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-03-14 19:38:34 -0700
committerFranck Cuny <franck@fcuny.net>2021-03-14 19:38:34 -0700
commitf36b7916a95e5d267bfe34b8e18b0598e7b08792 (patch)
tree9702cae1ab91d32e2a9da874062683fbab33aa1b /emacs/custom
parentorg: hide emphasis markup (diff)
downloademacs.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 'emacs/custom')
-rw-r--r--emacs/custom/fcuny-org.el5
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