From 943ccbe15c5c9d8784d662e0a42b140ed5c98ffe Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Fri, 3 Oct 2025 16:21:44 +0100 Subject: Set org-level font height --- emacs-config.org | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'emacs-config.org') 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 -- cgit