How to change font size in emacs?

29,095

Solution 1

The temporary solution

You can press C-x C-+ and C-x C-- to increase or decrease the buffer text size.

The permanent solution

Put the following in your .emacs-file:

 (set-face-attribute 'default nil :height 100)

The value is in 1/10pt, so 100 will give you 10pt, etc.

Source: How to set the font size in emacs?

Solution 2

A slightly different way to do the same thing, by setting botht the font and size in one go, again in the .emacs file. If you want to use a differing font check it exists first or you will get an error message.

(set-default-font "Monospace-12")

Share:
29,095

Related videos on Youtube

prosseek
Author by

prosseek

Updated on September 17, 2022

Comments

  • prosseek
    prosseek over 1 year

    I download emacs with 'sudo apt-get install emacs'. When I run emacs, I see emacs with too big fonts. I don't know why the default setup to have normal font size in emacs. How can I do that? enter image description here