diff options
| author | Blake Romero <blake@blkrom.com> | 2025-10-03 16:21:44 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-10-03 16:21:44 +0100 |
| commit | 943ccbe15c5c9d8784d662e0a42b140ed5c98ffe (patch) | |
| tree | e50bc8088d5bfdb8d26fbeaa2398bf192a45a617 | |
| parent | a88ce00b40d8804f1f0934c43e8ca09d27241926 (diff) | |
Set org-level font height
| -rw-r--r-- | emacs-config.org | 10 |
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 |
