summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-06-01 17:37:50 +0200
committerAlan Pearce2017-06-01 17:37:50 +0200
commite2cd7e8101cab293469deb21eb6758ba6b48a9dc (patch)
tree31df8a10e46a810294219cd4109bf58000d29cfd /emacs
parent6460d97d5ec5b2581d99c1c5efc3670b1c6d1710 (diff)
downloaddotfiles-e2cd7e8101cab293469deb21eb6758ba6b48a9dc.tar.lz
dotfiles-e2cd7e8101cab293469deb21eb6758ba6b48a9dc.tar.zst
dotfiles-e2cd7e8101cab293469deb21eb6758ba6b48a9dc.zip
Emacs: Set fonts on Windows
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index dbe38d6..a6aecc5 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