Skip to content

Commit

Permalink
Fix font-spec in config.el template
Browse files Browse the repository at this point in the history
  • Loading branch information
hlissner committed Dec 20, 2019
1 parent 6d40f30 commit bff04ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/templates/config.example.el
Expand Up @@ -19,8 +19,8 @@
;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd
;; font string. You generally only need these two:
;; test
(setq doom-font (font-spec "monospace" :size 14)
doom-variable-pitch-font (font-spec "sans"))
(setq doom-font (font-spec :family "monospace" :size 14)
doom-variable-pitch-font (font-spec :family "sans"))

;; There are two ways to load a theme. Both assume the theme is installed and
;; available. You can either set `doom-theme' or manually load a theme with the
Expand Down

0 comments on commit bff04ed

Please sign in to comment.