From a531ca58b539b27866c9b8cff8946fc9b4306a05 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 18 Aug 2022 10:03:21 -0500 Subject: [PATCH] making Org Mode headings smaller --- README.org | 6 +++--- init.el | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index 3418203a..ba0a2adf 100644 --- a/README.org +++ b/README.org @@ -543,9 +543,9 @@ Let's start by creating a self contained function of what I'd like started on ev ;; 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))) diff --git a/init.el b/init.el index 6d24c6f7..ec6f0a92 100644 --- a/init.el +++ b/init.el @@ -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)))