This commit is contained in:
Nathan McCarty 2023-04-11 21:59:22 -04:00
parent 07b7a2d9a3
commit 86d2ca5e39
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -37,10 +37,10 @@ The provided default ~config.el~
(let ((nm/font-name (cond ((or IS-MAC IS-WINDOWS) "Iosevka Nerd Font") (let ((nm/font-name (cond ((or IS-MAC IS-WINDOWS) "Iosevka Nerd Font")
(t "Iosevka"))) (t "Iosevka")))
(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")) 16)
(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")) 19)
(t 15)))) (t 15))))
(setq doom-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light) (setq doom-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light)
doom-unicode-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light) doom-unicode-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light)