Alter doom-acario-dark's font for comments
Thanks to my newly acquired `Info-mode` navigation skills, I quickly learned how to alter fonts in Emacs!
This commit is contained in:
parent
a8704bb54d
commit
4cd552de28
1 changed files with 6 additions and 1 deletions
|
@ -167,7 +167,12 @@
|
||||||
(progn
|
(progn
|
||||||
(fonts-whitelist-set "JetBrainsMono")
|
(fonts-whitelist-set "JetBrainsMono")
|
||||||
(fonts-enable-ligatures)
|
(fonts-enable-ligatures)
|
||||||
(colorscheme-whitelist-set 'doom-acario-dark))
|
(colorscheme-whitelist-set 'doom-acario-dark)
|
||||||
|
;; the doom-acario-dark theme uses "Monospace Serif" as the font for
|
||||||
|
;; comments, and I'd prefer JetBrainsMono (no italics).
|
||||||
|
(set-face-attribute font-lock-comment-face nil
|
||||||
|
:family "JetBrainsMono"
|
||||||
|
:slant 'normal))
|
||||||
(load-theme 'wombat))
|
(load-theme 'wombat))
|
||||||
|
|
||||||
(modeline-setup)
|
(modeline-setup)
|
||||||
|
|
Loading…
Reference in a new issue