making Org Mode headings smaller

This commit is contained in:
Chris Cochrun 2022-08-18 10:03:21 -05:00
parent 7a9339957e
commit a531ca58b5
2 changed files with 6 additions and 6 deletions

View file

@ -341,9 +341,9 @@
;; changing height and boldness
(dolist (face
'((org-level-1 1.4 ultra-bold)
(org-level-2 1.3 extra-bold)
(org-level-3 1.2 bold)
(org-level-4 1.1 semi-bold)
(org-level-2 1.2 extra-bold)
(org-level-3 1.1 bold)
(org-level-4 1.0 semi-bold)
(org-level-5 1.0 normal)))
(set-face-attribute (nth 0 face) nil :weight (nth 2 face) :height (nth 1 face)))