Commit fd974cd2fee1

Vincent Demeester <vincent@sbr.pm>
2019-01-12 17:49:11
vde-org: add org-bullets ๐Ÿ’ƒ
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent c9be858
Changed files (1)
lisp/vde-org.el
@@ -33,6 +33,8 @@
   (setq org-log-reschedule (quote time))
   (setq org-log-into-drawer t)
 
+  (setq org-fontify-whole-heading-line t)
+
   (setq org-pretty-entities t)
   (setq org-insert-heading-respect-content t)
   (setq org-ellipsis " โ€ฆ")
@@ -170,6 +172,12 @@ like this : [[pt:REGEXP:FOLDER]]"
   :config
   (use-package ox-hugo-auto-export))
 
+(use-package org-bullets
+  :after (org)
+  :hook (org-mode . org-bullets-mode)
+  :config
+  (setq org-bullets-bullet-list '("โ—‰" "โ—‹" "โšซ")))
+
 (provide 'vde-org)
 
 ;; Local Variables: