Tweak windows fonts

This commit is contained in:
Nathan McCarty 2023-07-05 22:24:27 -04:00
parent d274263718
commit f9dbd1b40f
1 changed files with 3 additions and 3 deletions

View File

@ -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 ;; Figure out what the name and size of the font are going to be based on the system type and
;; hostname ;; 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")) (t "Iosevka Nerd Font"))
nm/font-size (cond (IS-MAC 11) 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)) (t 13))
nm/variable-font-size (cond (IS-MAC 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))) (t 15)))