Created
January 2, 2015 14:31
-
-
Save anonymous/9f0cf204cce60eeafd2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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