I want to set a different font for org-mode contents. Strangely, setting
'(org-level-1 ((t (:inherit variable-pitch))))
has the effect on headers as intended. However, setting
'(org-default ((t (:inherit variable-pitch))))
does not impact the text on normal org-mode text. They're still fixed-width font.
If I run describe-face on those text, it just says default instead of org-default. Not sure if that's the normal behavior.
How can I manually set font for normal org-mode content text?
buffer-face-modeneeds to be enabled for buffer-local face settings such as changing the'default: comments.gmane.org/gmane.emacs.orgmode/84250buffer-face-modechanges all facesvariable-pitch-modefor this?(add-hook 'org-mode-hook (lambda () (variable-pitch-mode t)))