Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing the font in Aquamacs?

I've recently had a need to do a bit of lisp editing and I found the nifty Ready Lisp package for OS X, which is great, except Aquamacs automatically uses a proportional font (which is idiotic, IMHO) and I want to change it to a monospace font. However, I'm not really much of an EMACS user, and the preferences menu in Aquamacs is less than clear on where and how one might make such a change.

like image 768
Paul Wicks Avatar asked Sep 13 '08 21:09

Paul Wicks


People also ask

How do I change the font style?

Open Settings. Tap Display. Tap Font and screen zoom. Select your choice of Font Style and you're done.

How do I change the font in Catia?

Open CATIA. 2. Go to Tools > Standards > Drafting > ISO > Styles > Length / Distance Dimension > Default > Font > & change these settings (Font size: 14, Bold: Yes, Underline: Yes 7 Colour: Green).

How do I change the font in Emacs?

Use ` S-down-mouse-1 ' or ` M-x menu-set-font ' to see the font and fontset menu. Emacs starts with the startup fontset.


2 Answers

From the EmacsWiki Aquamacs FAQ:

To change the font used to display the current frame, go to the font panel. You can do this with the keystroke Apple-t, or via the menu: Options → Show/Hide → Font Panel. Once there, select the font you want.

To make the current frame’s font the default, go to Options → Frame Appearance Styles. Select “use current style for foo mode”, where foo is the mode of the current frame (e.g., foo=text for text mode), to use the current style (including the font, but also any other changes you’ve made to the frame’s style) for all files of this type. Select “use current style as default” to use the current style for all files for whose major mode no special style has been defined.

There are also recommendations for monospaced fonts - Monaco or "Vera Sans Mono".

like image 177
Blair Conrad Avatar answered Oct 27 '22 00:10

Blair Conrad


Fast forward a decade, for recent Aquamacs like ver 3.3 please see the nice solution for setting a fixed-width by default at https://emacs.stackexchange.com/questions/45135/change-permanently-font-size-in-aquamacs

Here's the relevant bit for those who are REALLY impatient but please go upvote that answer, user @nega deserves credit here

(when window-system
  (setq initial-frame-alist nil)   ;; Undo Aquamacs forced defaults
  (setq default-frame-alist nil)   ;; Undo Aquamacs forced defaults
  (aquamacs-autoface-mode -1)      ;; Use one face (font) everywhere
  (set-frame-font "Menlo-12")      ;; Set the default font to Menlo size 12
  ;;(set-default-font "Menlo-12")  ;; This would do the same.
)
like image 41
chrisinmtown Avatar answered Oct 27 '22 02:10

chrisinmtown