I was wondering how does one set the font size in emacs. I want to save this in the .emacs file but I don't know how to set the font.

link|improve this question

69% accept rate
feedback

9 Answers

up vote 85 down vote accepted
(set-face-attribute 'default nil :height 100)

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

link|improve this answer
thank you for this – James Oct 25 '10 at 12:48
feedback

From Emacswiki, GNU Emacs 23 has a built-in key combination:

`C-x C-+’ and ‘C-x C--’ to increase or decrease the buffer text size

link|improve this answer
thanks for the pointer to this emacswiki page – Noah Sussman Jun 22 '10 at 23:45
2  
or `C-x C-=’ and ‘C-x C--’ – Hongbo Zhu Mar 19 at 15:37
1  
This is local to that particular buffer. So when you switch to other files you're editing, they will not see the effect of this change. Also when you close and reopen the buffer (or even restart Emacs), they'll be at the old default size. This may be what you want; I'm just stating this for completeness. – ShreevatsaR May 22 at 4:43
feedback

Press Shift and the first mouse button. You can change the font size in the following way: This website has more detail.

link|improve this answer
1  
I wish I could upvote more than once. This is perfect. – Alex B Feb 20 '09 at 16:22
2  
How can this be made permanent? – Andrew Larned Jan 8 '10 at 13:04
@AndrewLarned To make the change permanent, you'd make the change in your .emacs file. (See Chris Conway's answer for an example of what he has in his .emacs file.) – Ram Narasimhan 2 days ago
feedback

M-x customize-face RET default will allow you to set the face default face, on which all other faces base on. There you can set the font-size.

Here is what is in my .emacs. actually, color-theme will set the basics, then my custom face setting will override some stuff. the custom-set-faces is written by emacs's customize-face mechanism:

;; my colour theme is whateveryouwant :)
(require 'color-theme)
(color-theme-initialize)
(color-theme-whateveryouwant)

(custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 '(default ((t (:stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
 '(font-lock-comment-face ((t (:foreground "darkorange4"))))
 '(font-lock-function-name-face ((t (:foreground "navy"))))
 '(font-lock-keyword-face ((t (:foreground "red4"))))
 '(font-lock-type-face ((t (:foreground "black"))))
 '(linum ((t (:inherit shadow :background "gray95"))))
 '(mode-line ((t (nil nil nil nil :background "grey90" (:line-width -1 :color nil :style released-button) "black" :box nil :width condensed :foundry "unknown" :family "DejaVu Sans Mono")))))
link|improve this answer
feedback

I've got the following in my .emacs:

(defun fontify-frame (frame)
  (set-frame-parameter frame 'font "Monospace-11"))

;; Fontify current frame
(fontify-frame nil)
;; Fontify any future frames
(push 'fontify-frame after-make-frame-functions)

You can subsitute any font of your choosing for "Monospace-11". The set of available options is highly system-dependent. Using M-x set-default-font and looking at the tab-completions will give you some ideas. On my system, with Emacs 23 and anti-aliasing enabled, can choose system fonts by name, e.g., Monospace, Sans Serif, etc.

link|improve this answer
yeah, emacs23 rocks. here is my emacs: stackoverflow.com/questions/93326/… – Johannes Schaub - litb Nov 17 '08 at 2:20
Thank you Chris, exactly what I was looking for! – rodrigoalvesvieira Feb 8 at 18:25
feedback

For emacs23, have a look at this: http://www.emacswiki.org/emacs/XftGnuEmacs

link|improve this answer
feedback

It all depends what you mean by change the font size. This EmacsWiki section provides the best and most complete information. It distinguishes the various cases (text scaling, frame font, buffer/frame, etc.): Changing Font Size.

link|improve this answer
feedback

It depends which platform you're on, but regardless Emacswiki has all the answers.

link|improve this answer
1  
It is often misleading. There is no mention, for example, of huai's solution, which is the simplest. – konr Dec 6 '09 at 20:55
1  
There is now. :-) – GaryO Feb 7 '10 at 19:24
@konr: Incomplete I can understand (it depends on users to contribute material, after all), but can you substantiate your "often misleading"? – ShreevatsaR Nov 29 '11 at 6:58
feedback

In NTEmacs 23.1, the Options menu has a "Set default font..." option.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.