summaryrefslogtreecommitdiff
path: root/emacs/custom
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom')
-rw-r--r--emacs/custom/fcuny-org.el9
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)