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-mode
needs to be enabled for buffer-local face settings such as changing the'default
: http://comments.gmane.org/gmane.emacs.orgmode/84250 – lawlist Aug 18 '15 at 03:44buffer-face-mode
changes all faces – Richard Border Jan 17 '17 at 21:30variable-pitch-mode
for this?(add-hook 'org-mode-hook (lambda () (variable-pitch-mode t)))
– Timm Jan 17 '17 at 22:18org-default
face. – xji Jan 18 '17 at 09:51variable-pitch-mode
. I guess this specific question aboutorg-default
face can still have some value on its own though. – xji Jan 18 '17 at 09:56