diff options
author | Alan Pearce | 2017-06-01 17:37:50 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-01 17:37:50 +0200 |
commit | e2cd7e8101cab293469deb21eb6758ba6b48a9dc (patch) | |
tree | 31df8a10e46a810294219cd4109bf58000d29cfd /emacs/.emacs.d/init.org | |
parent | 6460d97d5ec5b2581d99c1c5efc3670b1c6d1710 (diff) | |
download | nixfiles-e2cd7e8101cab293469deb21eb6758ba6b48a9dc.tar.lz nixfiles-e2cd7e8101cab293469deb21eb6758ba6b48a9dc.tar.zst nixfiles-e2cd7e8101cab293469deb21eb6758ba6b48a9dc.zip |
Emacs: Set fonts on Windows
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r-- | emacs/.emacs.d/init.org | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index dbe38d64..a6aecc5a 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -229,7 +229,10 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource ((and (eq window-system 'x) (not (getenv "windows"))) (set-fontset-font "fontset-default" 'unicode (font-spec :name "Terminus" :size 18)) - (ap/set-fonts "Terminus" 18 "Lucida" 14 nil)))) + (ap/set-fonts "Terminus" 18 "Lucida" 14 nil)) + ((and (eq window-system 'x) + (getenv "windows")) + (ap/set-fonts "Noto Mono" 15 "Sans" 15 nil)))) (ap/set-fonts-according-to-system)) #+END_SRC |