From c548d627b7b3e87c6011b70ad454d17cb298fd92 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Mon, 27 Mar 2023 19:43:02 -0400 Subject: [PATCH] Setup fonts properly on darwin --- config.org | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/config.org b/config.org index b3b3618..d497dc8 100644 --- a/config.org +++ b/config.org @@ -36,13 +36,17 @@ The provided default ~config.el~ (setq doom-font (font-spec :family "Iosevka" :size 16 :weight 'semi-light) doom-unicode-font (font-spec :family "Iosevka" :size 16 :weight 'semi-light) doom-variable-pitch-font (font-spec :family "Iosevka Sans Quasi" :size 19)) - (setq doom-font (font-spec :family "Iosevka" :size 13 :weight 'semi-light) - doom-unicode-font (font-spec :family "Iosevka" :size 13 :weight 'semi-light) - doom-variable-pitch-font (font-spec :family "Iosevka Sans Quasi" :size 15))) + (if (string= (system-name) "extremophile.local") + (setq doom-font (font-spec :family "Iosevka Nerd Font" :size 11 :weight 'semi-light) + doom-unicode-font (font-spec :family "Iosevka Nerd Font" :size 11 :weight 'semi-light) + doom-variable-pitch-font (font-spec :family "Iosevka Sans Quasi" :size 13)) + (setq doom-font (font-spec :family "Iosevka" :size 13 :weight 'semi-light) + doom-unicode-font (font-spec :family "Iosevka" :size 13 :weight 'semi-light) + doom-variable-pitch-font (font-spec :family "Iosevka Sans Quasi" :size 15)))) ;; ;; If you or Emacs can't find your font, use 'M-x describe-font' to look them ;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to -;; refresh your font settings. If Emacs still can't find your font, it likely +;; refresh your font settings. )If Emacs still can't find your font, it likely ;; wasn't installed correctly. Font issues are rarely Doom issues! ;; There are two ways to load a theme. Both assume the theme is installed and