Skip to content

Instantly share code, notes, and snippets.

Created January 2, 2015 14:31
Show Gist options
  • Save anonymous/9f0cf204cce60eeafd2a to your computer and use it in GitHub Desktop.
Save anonymous/9f0cf204cce60eeafd2a to your computer and use it in GitHub Desktop.
(package-initialize)
(defun set-my-font-for-frame (frame)
(interactive (list nil))
(set-frame-font "Monaco for Powerline-12" nil t))
;; ;; This is needed because you can't set the font at daemon start-up.
(add-hook 'after-make-frame-functions 'set-my-font-for-frame)
(add-hook 'after-make-frame-functions (lambda (frame) (load-theme 'solarized-dark t)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment