What's a recommended way to set the font size for org-mode (or any other major mode) to a certain value that is different from the global font size?
By looking at documentation C-h k C-x C-+
, this is what I came up with:
(defun scale-up-font ()
(text-scale-increase 2))
(add-hook 'org-mode-hook 'scale-up-font)
With this, I've noticed loading time for org-mode files to be slightly longer. Is there a better way to do this?