diff options
Diffstat (limited to '')
| -rw-r--r-- | settings/setup-org-mode.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/settings/setup-org-mode.el b/settings/setup-org-mode.el index ff93336..d4b236a 100644 --- a/settings/setup-org-mode.el +++ b/settings/setup-org-mode.el @@ -1,7 +1,13 @@ ;; Pretty bullets (add-hook 'org-mode-hook (lambda() (org-bullets-mode 1))) -(setq org-ellipsis "⤳") +(custom-set-faces + '(org-level-1 ((t (:inherit outline-1 :height 1.0)))) + '(org-level-2 ((t (:inherit outline-2 :height 1.0)))) + '(org-level-3 ((t (:inherit outline-3 :height 1.0)))) + '(org-level-4 ((t (:inherit outline-4 :height 1.0)))) + '(org-level-5 ((t (:inherit outline-5 :height 1.0))))) + (setq org-log-done 'time) (setq org-src-fontify-natively t) (setq org-src-tab-acts-natively t) |
