1
0
Fork 0

feat(emacs): variable face in org-mode

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-02-05 16:03:03 -05:00
parent 20d2bb941e
commit df1b455081
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
2 changed files with 20 additions and 9 deletions

View file

@ -57,9 +57,11 @@
(defvar font-family "JetBrains Mono SemiBold")
(set-frame-font (format "%s %d" font-family font-size))
(custom-set-faces
'(shr-text ((t (:inherit variable-pitch-text :family "Noto Sans Light")))))
'(variable-pitch ((t (:family "Linux Libertine" :height 125 :weight medium))))
'(fixed-pitch ((t (:family "JetBrains Mono SemiBold" :height 100))))
'(shr-text ((t (:inherit variable-pitch-text :family "Linux Libertine")))))
(set-face-attribute 'italic nil
:family "JetBrains Mono"
:family 'inherit
:slant 'italic
:weight 'semi-bold
:foreground nano-light-foreground)