1
0
Fork 0

fix(emacs): specify italics font

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-12-31 04:54:37 -05:00
parent ea1866cfe6
commit a775907d48
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -52,6 +52,11 @@
(set-frame-font (format "%s %d" font-family font-size)) (set-frame-font (format "%s %d" font-family font-size))
(custom-set-faces (custom-set-faces
'(shr-text ((t (:inherit variable-pitch-text :family "Noto Sans Light"))))) '(shr-text ((t (:inherit variable-pitch-text :family "Noto Sans Light")))))
(set-face-attribute 'italic nil
:family "Roboto Mono"
:slant 'italic
:weight 'bold
:foreground nano-light-foreground)
;; Use spaces instead of tabs ;; Use spaces instead of tabs
(setq-default indent-tabs-mode nil) (setq-default indent-tabs-mode nil)