Emacs + Mac OSX and changing default font
Asked Answered
P

4

10

how I can change default font to Monaco with antialiasing on Emacs 23. Where I can find dedicated binary for Emacs 23.1 for cocoa with antialised font settings?

Papyrus answered 10/8, 2009 at 21:52 Comment(0)
V
12

You can set the font faces via: M-x customize-faces and type default when prompted Customize face (...): There's an option to Save for Future Sessions which will write to your custom.el file, so the face will be set next time you run Emacs.

There are two distributions which are popular

Both are excellent binary distributions.

Vena answered 11/8, 2009 at 3:33 Comment(0)
F
15

There is another question that deals with fonts on Emacs and Mac OS here: How do I set fonts on Emacs for Mac?

I found it easiest to add something like this to my init.el

 (set-face-attribute 'default nil
                :family "Inconsolata" :height 145 :weight 'normal)
Fleecy answered 18/4, 2012 at 10:29 Comment(0)
V
12

You can set the font faces via: M-x customize-faces and type default when prompted Customize face (...): There's an option to Save for Future Sessions which will write to your custom.el file, so the face will be set next time you run Emacs.

There are two distributions which are popular

Both are excellent binary distributions.

Vena answered 11/8, 2009 at 3:33 Comment(0)
B
7

I grab my OS X Emacs binaries from http://atomized.org/wp-content/cocoa-emacs-nightly/.

You can find the settings for the default font in M-x customize, then once inside the customize menu, you follow this path: -> Faces -> Basic Faces -> Default .

Bettis answered 10/8, 2009 at 22:25 Comment(0)
G
2

If you have xcode installed you can build emacs your self nothing extra needed, which uses anti aliased monaco as the default font.

Gaullism answered 10/8, 2009 at 23:12 Comment(1)
true, but that's how those nightlies are compiled. Who wants to spend time recompiling Emacs periodically when the nightlies are available for download? It's just clear that the asker of the question isn't clear on where he needs to go to change the fonts, and that is useful info to have.Bettis

© 2022 - 2024 — McMap. All rights reserved.