Setup fonts properly on darwin
This commit is contained in:
parent
ba9f0fe63c
commit
c548d627b7
12
config.org
12
config.org
|
@ -36,13 +36,17 @@ The provided default ~config.el~
|
||||||
(setq doom-font (font-spec :family "Iosevka" :size 16 :weight 'semi-light)
|
(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-unicode-font (font-spec :family "Iosevka" :size 16 :weight 'semi-light)
|
||||||
doom-variable-pitch-font (font-spec :family "Iosevka Sans Quasi" :size 19))
|
doom-variable-pitch-font (font-spec :family "Iosevka Sans Quasi" :size 19))
|
||||||
(setq doom-font (font-spec :family "Iosevka" :size 13 :weight 'semi-light)
|
(if (string= (system-name) "extremophile.local")
|
||||||
doom-unicode-font (font-spec :family "Iosevka" :size 13 :weight 'semi-light)
|
(setq doom-font (font-spec :family "Iosevka Nerd Font" :size 11 :weight 'semi-light)
|
||||||
doom-variable-pitch-font (font-spec :family "Iosevka Sans Quasi" :size 15)))
|
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
|
;; 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
|
;; 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!
|
;; 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
|
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||||
|
|
Loading…
Reference in New Issue