From f9dbd1b40f0a454b498b845a3623f9fcce1b043b Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Wed, 5 Jul 2023 22:24:27 -0400 Subject: [PATCH] Tweak windows fonts --- config.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.org b/config.org index cf71b0b..672d397 100644 --- a/config.org +++ b/config.org @@ -34,13 +34,13 @@ The provided default ~config.el~ ;; Figure out what the name and size of the font are going to be based on the system type and ;; hostname -(setq nm/font-name (cond ((or IS-MAC IS-WINDOWS) "Iosevka Nerd Font") +(setq nm/font-name (cond ((or IS-WINDOWS) "Iosevka NF") (t "Iosevka Nerd Font")) nm/font-size (cond (IS-MAC 11) - ((or IS-WINDOWS (string= (system-name) "wsl")) 16) + ((or IS-WINDOWS (string= (system-name) "wsl")) 17) (t 13)) nm/variable-font-size (cond (IS-MAC 13) - ((or IS-WINDOWS (string= (system-name) "wsl")) 19) + ((or IS-WINDOWS (string= (system-name) "wsl")) 20) (t 15)))