tune font config for org mode and code

This commit is contained in:
KemoNine 2023-01-14 23:54:23 -05:00
parent e05cd09a53
commit 1053fcd711
1 changed files with 14 additions and 13 deletions

View File

@ -277,23 +277,24 @@ position between last non-whitespace and `end-of-line'."
(custom-theme-set-faces
'user
'(variable-pitch ((t (:family "Atkinson Hyperlegible"))))
'(fixed-pitch ((t ( :family "MonoLisa Variable"))))
'(variable-pitch ((t (:family "Atkinson Hyperlegible" :height 120))))
'(fixed-pitch ((t ( :family "MonoLisa Variable" :height 120))))
)
(custom-theme-set-faces
(custom-theme-set-faces
'user
'(org-block ((t (:inherit fixed-pitch))))
'(org-code ((t (:inherit (fixed-pitch)))))
'(org-document-info ((t (:inherit (fixed-pitch)))))
'(org-document-info-keyword ((t (:inherit (fixed-pitch)))))
'(org-link ((t (:inherit (fixed-pitch)))))
'(org-meta-line ((t (:inherit (fixed-pitch)))))
'(org-property-value ((t (:inherit (fixed-pitch)))))
'(org-verbatim ((t (:inherit (fixed-pitch)))))
'(org-tag ((t (:inherit (fixed-pitch)))))
'(line-number ((t (:inherit (fixed-pitch)))))
'(line-number-current-line ((t (:inherit (fixed-pitch)))))
'(org-code ((t (:inherit (shadow fixed-pitch)))))
'(org-document-info ((t (:inherit fixed-pitch))))
'(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
'(org-indent ((t (:inherit (org-hide fixed-pitch)))))
'(org-link ((t (:inherit (shadow fixed-pitch)))))
'(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
'(org-property-value ((t (:inherit fixed-pitch))) t)
'(org-special-keyword ((t (:inherit (font-lock-comment-face fixed-pitch)))))
'(org-table ((t (:inherit fixed-pitch))))
'(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
'(org-verbatim ((t (:inherit (shadow fixed-pitch)))))
)
(add-hook 'org-mode-hook 'variable-pitch-mode)