From 1ae73c4d158ea61b80c669dee40f12551fab9ca3 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Mon, 15 Nov 2021 21:45:15 -0600 Subject: [PATCH] Changing bullets. --- .config/doom/config.el | 11 +++++------ .config/doom/config.org | 11 +++++------ 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/.config/doom/config.el b/.config/doom/config.el index 841176f..047f5ce 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -285,8 +285,7 @@ org-default-notes-file (expand-file-name "notes.org" org-directory) org-ellipsis " ▼ " org-superstar-headline-bullets-list '("◉" "●" "○" "◆" "●" "○" "◆") - org-superstar-item-bullet-alist '((?+ . ?➤) - (?- . ?✦)) + org-superstar-item-bullet-alist '((?+ . ?➤) (?- . ?✦)) ; changes +/- symbols in item lists org-log-done 'time org-hide-emphasis-markers t ;; ex. of org-link-abbrev-alist in action @@ -309,10 +308,10 @@ "CANCELLED(c)" )))) ; Task has been cancelled (custom-set-faces - '(org-level-1 ((t (:inherit outline-1 :height 1.2)))) - '(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-1 ((t (:inherit outline-1 :height 1.4)))) + '(org-level-2 ((t (:inherit outline-2 :height 1.3)))) + '(org-level-3 ((t (:inherit outline-3 :height 1.2)))) + '(org-level-4 ((t (:inherit outline-4 :height 1.1)))) '(org-level-5 ((t (:inherit outline-5 :height 1.0)))) ) diff --git a/.config/doom/config.org b/.config/doom/config.org index afdf104..c4a90a5 100644 --- a/.config/doom/config.org +++ b/.config/doom/config.org @@ -531,8 +531,7 @@ I wrapped most of this block in (after! org). Without this, my settings might b org-default-notes-file (expand-file-name "notes.org" org-directory) org-ellipsis " ▼ " org-superstar-headline-bullets-list '("◉" "●" "○" "◆" "●" "○" "◆") - org-superstar-item-bullet-alist '((?+ . ?➤) - (?- . ?✦)) + org-superstar-item-bullet-alist '((?+ . ?➤) (?- . ?✦)) ; changes +/- symbols in item lists org-log-done 'time org-hide-emphasis-markers t ;; ex. of org-link-abbrev-alist in action @@ -558,10 +557,10 @@ I wrapped most of this block in (after! org). Without this, my settings might b ** Set font sizes for each header level in Org #+begin_src emacs-lisp (custom-set-faces - '(org-level-1 ((t (:inherit outline-1 :height 1.2)))) - '(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-1 ((t (:inherit outline-1 :height 1.4)))) + '(org-level-2 ((t (:inherit outline-2 :height 1.3)))) + '(org-level-3 ((t (:inherit outline-3 :height 1.2)))) + '(org-level-4 ((t (:inherit outline-4 :height 1.1)))) '(org-level-5 ((t (:inherit outline-5 :height 1.0)))) ) #+end_src