Emacs + Mac OSX and changing the default font

how can I change the default font on Monaco with antialiasing on Emacs 23. Where can I find a dedicated binary for Emacs 23.1 for cocoa with anti-virus font settings?

+7
emacs emacs23 macos
source share
4 answers

You can set the font faces using: Mx customize-faces and enter default when prompted Customize face (...): There will be an Save for Future Sessions option that will be written to your custom.el file, so the face will be set to the following run emacs once.

There are two common distributions

Both are excellent binary distributions.

+11
source share

Another question regarding Emacs and Mac OS fonts : How do I install fonts in Emacs for Mac?

It was easier for me to add something like this to init.el

  (set-face-attribute 'default nil :family "Inconsolata" :height 145 :weight 'normal) 
+10
source share

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

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

+7
source share

If you have xcode installed, you can create emacs yourself, and ant aliased monaco is used as the default font.

+2
source share

All Articles