20 lines
887 B
EmacsLisp
20 lines
887 B
EmacsLisp
;; configure theme
|
|
(setq doom-theme 'doom-solarized-light)
|
|
|
|
; dotspacemacs-default-font '("Terminus"
|
|
; :size ${toString fontSize}
|
|
; :weight normal
|
|
; :width normal
|
|
; :powerline-scale 1.1)
|
|
|
|
;; "monospace" means use the system default. However, the default is usually two
|
|
;; points larger than I'd like, so I specify size 12 here.
|
|
;(setq doom-font (font-spec :family "JetBrainsMono" :size 12 :weight 'light)
|
|
; doom-variable-pitch-font (font-spec :family "Noto Serif" :size 13)
|
|
; ivy-posframe-font (font-spec :family "JetBrainsMono" :size 15))
|
|
|
|
(setq doom-font (font-spec :family "Terminus" :size 12 :weight 'light)
|
|
;doom-variable-pitch-font (font-spec :family "Noto Serif" :size 13)
|
|
;ivy-posframe-font (font-spec :family "JetBrainsMono" :size 15)
|
|
)
|
|
|