Setup fonts properly on darwin
This commit is contained in:
parent
ba9f0fe63c
commit
c548d627b7
|
@ -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))
|
||||
(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)))
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue