Loading custom emacs lisp when starting
This entry is mostly so I don’t forget again. Add your customizations to:
~/Library/Preferences/Aquamacs Emacs/Preferences.el
How I found it:
find ~ | grep 'quamacs'
For example, my file looks like:
;; This is the Aquamacs Preferences file.
;; Add Emacs-Lisp code here that should be executed whenever
;; you start Aquamacs Emacs. If errors occur, Aquamacs will stop
;; evaluating this file and print errors in the *Messages* buffer.
;; Use this file in place of ~/.emacs (which is loaded as well.)
(setq-default indent-tabs-mode nil)
(add-hook 'before-save-hook 'delete-trailing-whitespace)