From 0ef00a257b954ca1119d382ba52380caad739d6a Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sun, 31 Dec 2023 09:28:12 -0500 Subject: [PATCH] fix(emacs): tune markdown header sizes Signed-off-by: Lucas Sta Maria --- .emacs.d/include/misc.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.emacs.d/include/misc.el b/.emacs.d/include/misc.el index c8f3f0a..f978a3e 100644 --- a/.emacs.d/include/misc.el +++ b/.emacs.d/include/misc.el @@ -101,12 +101,12 @@ ;; Markdown (custom-set-faces - '(markdown-header-face-1 ((t (:inherit nano-strong :height 1.3 :family "Inter")))) - '(markdown-header-face-2 ((t (:inherit nano-strong :height 1.2 :family "Inter")))) - '(markdown-header-face-3 ((t (:inherit nano-strong :height 1.1 :family "Inter")))) - '(markdown-header-face-4 ((t (:inherit nano-strong :height 1.0 :family "Inter")))) - '(markdown-header-face-5 ((t (:inherit nano-strong :height 0.9 :family "Inter")))) - '(markdown-header-face-6 ((t (:inherit nano-strong :height 0.8 :family "Inter"))))) + '(markdown-header-face-1 ((t (:inherit nano-strong :height 1.3 :family "Inter")))) + '(markdown-header-face-2 ((t (:inherit nano-strong :height 1.25 :family "Inter")))) + '(markdown-header-face-3 ((t (:inherit nano-strong :height 1.2 :family "Inter")))) + '(markdown-header-face-4 ((t (:inherit nano-strong :height 1.15 :family "Inter")))) + '(markdown-header-face-5 ((t (:inherit nano-strong :height 1.1 :family "Inter")))) + '(markdown-header-face-6 ((t (:inherit nano-strong :height 1.05 :family "Inter"))))) (add-hook 'markdown-mode-hook #'markdown-toggle-fontify-code-blocks-natively) (provide 'misc)