Skip to content

Instantly share code, notes, and snippets.

@jonneale
Created May 29, 2013 10:20
Show Gist options
  • Save jonneale/5669339 to your computer and use it in GitHub Desktop.
Save jonneale/5669339 to your computer and use it in GitHub Desktop.
Emacs config to enable the changing of the default font when using the emacs live configuration
(remove-if (lambda (x)
(eq 'font (car x)))
default-frame-alist)
(cond
((and (window-system) (eq system-type 'darwin))
(add-to-list 'default-frame-alist '(font . "Anonymous Pro 16"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment