How to set the font size in Emacs?
emacs, emacs-faces, fonts
Solution
(set-face-attribute 'default nil :height 100)
The value is in 1/10pt, so 100 will give you 10pt, etc.
Problem
I also want to save the font size in my `.emacs` file.
emacs, emacs-faces, fonts
(set-face-attribute 'default nil :height 100)
The value is in 1/10pt, so 100 will give you 10pt, etc.
I also want to save the font size in my `.emacs` file.