summaryrefslogtreecommitdiff
path: root/emacs-config.org
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-config.org')
-rw-r--r--emacs-config.org10
1 files changed, 9 insertions, 1 deletions
diff --git a/emacs-config.org b/emacs-config.org
index 07aea28..9d83ec5 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -412,7 +412,7 @@ Case-sensitive search by default and show match count in minibuffer.
*** Org Settings
:PROPERTIES:
-:header-args:elisp: :tangle no :noweb-ref org-settings
+:header-args:elisp: :tangle no :noweb-ref org-settings :results none
:END:
Org directory location.
@@ -477,6 +477,14 @@ Use custom IDs for links.
'create-if-interactive-and-no-custom-id))
#+end_src
+Style org headings.
+#+begin_src elisp
+ (set-face-attribute 'org-level-1 nil :height 1.4)
+ (set-face-attribute 'org-level-2 nil :height 1.3)
+ (set-face-attribute 'org-level-3 nil :height 1.2)
+ (set-face-attribute 'org-level-4 nil :height 1.1)
+#+end_src
+
*** Org To-dos & Tags
:PROPERTIES:
:header-args:elisp: :tangle no :noweb-ref org-todo-tag-settings