Setup variable-pitch font

This commit is contained in:
Case Duckworth 2021-12-28 18:18:51 -06:00
parent a58723657a
commit 9dc88b4803
1 changed files with 6 additions and 2 deletions

View File

@ -49,11 +49,15 @@ See `no-littering' for examples.")
;; Fonts
(let ((font-name "Go Mono")
(font-size 105))
(font-size 108)
(variable-font-name "Go")
(variable-font-size 1.0))
(set-face-attribute 'default nil :family font-name
:height font-size :weight 'book)
(set-face-attribute 'italic nil :family font-name
:height font-size :slant 'italic))
:height font-size :slant 'italic)
(set-face-attribute 'variable-pitch nil :family variable-font-name
:height variable-font-size))
;;; Packages