fix(emacs): use correct font family for Fira Code

This commit is contained in:
Price Hiller 2024-01-25 16:46:00 -06:00
parent 0af90797cf
commit 08817b7add
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,3 @@
(set-face-attribute 'default nil :family "FiraCode Nerd Font" :height 120)
(set-face-attribute 'fixed-pitch nil :family "FiraCode Nerd Font":height 130)
(set-face-attribute 'variable-pitch nil :family "FiraCode Nerd Font":height 130)
(set-face-attribute 'default nil :family "Fira Code" :height 120)
(set-face-attribute 'fixed-pitch nil :family "Fira Code":height 130)
(set-face-attribute 'variable-pitch nil :family "Fira Code":height 130)

View File

@ -130,7 +130,7 @@
(doom-themes-org-config))
(use-package doom-modeline
:custom
:custom
(doom-modeline-height 25)
(doom-modeline-bar-width 5)
(doom-modeline-icon t)
@ -683,7 +683,7 @@
(org-level-6 . 1.15)
(org-level-7 . 1.1)
(org-level-8 . 1.1)))
(set-face-attribute (car face) nil :font "FiraCode Nerd Font" :weight 'medium :height (cdr face)))
(set-face-attribute (car face) nil :font "Fira Code" :weight 'medium :height (cdr face)))
(set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch)
(set-face-attribute 'org-table nil :inherit 'fixed-pitch)
(set-face-attribute 'org-formula nil :inherit 'fixed-pitch)