Created
March 11, 2016 22:30
-
-
Save sprig/c1ec6bcfd2d1768e8443 to your computer and use it in GitHub Desktop.
Config to set up nice fonts in emacs
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
(defun kk/setup-fonts (&rest args) | |
(interactive) | |
(set-face-font 'default "Source Code Pro for Powerline-11") | |
(set-fontset-font t 'hebrew (font-spec :name "Courier New-11")) | |
) | |
(advice-add 'server-create-window-system-frame :after 'kk/setup-fonts) | |
(advice-add 'server-create-tty-frame :after 'kk/setup-fonts) | |
(unless (daemonp) (kk/setup-fonts)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment