summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-07-22 21:13:08 -0500
committerCase Duckworth2021-07-22 21:13:08 -0500
commitaedb9fd1595f25790ef9f46c03cd8988e4322874 (patch)
tree13e304d37e7b8b8a565cdaf5ade17e07621062a5 /early-init.el
parentAdd WBRH and KBRH (diff)
downloademacs-aedb9fd1595f25790ef9f46c03cd8988e4322874.tar.gz
emacs-aedb9fd1595f25790ef9f46c03cd8988e4322874.zip
Change fonts on Windows
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el14
1 files changed, 9 insertions, 5 deletions
diff --git a/early-init.el b/early-init.el index 7744c00..aaacf36 100644 --- a/early-init.el +++ b/early-init.el
@@ -54,7 +54,7 @@
54 (right-fringe . 8) ; (8 is default) 54 (right-fringe . 8) ; (8 is default)
55 (font . ,(acdw/system 55 (font . ,(acdw/system
56 (:home "DejaVu Sans Mono 10") 56 (:home "DejaVu Sans Mono 10")
57 (:work "Consolas 10") 57 (:work "Consolas 12")
58 (:other "monospace 10")))) 58 (:other "monospace 10"))))
59 frame-inhibit-implied-resize t ; Don't resize randomly 59 frame-inhibit-implied-resize t ; Don't resize randomly
60 frame-resize-pixelwise t ; Resize by pixels, not chars 60 frame-resize-pixelwise t ; Resize by pixels, not chars
@@ -82,13 +82,17 @@
82 (setq acdw-fonts/monospace (acdw/system 82 (setq acdw-fonts/monospace (acdw/system
83 (:home "DejaVu Sans Mono") 83 (:home "DejaVu Sans Mono")
84 (:work "Consolas") 84 (:work "Consolas")
85 (:other "monospace")) 85 (_ "monospace"))
86 acdw-fonts/monospace-size 10 86 acdw-fonts/monospace-size (acdw/system
87 (:work 12)
88 (_ 10))
87 acdw-fonts/variable (acdw/system 89 acdw-fonts/variable (acdw/system
88 (:home "DejaVu Sans") 90 (:home "DejaVu Sans")
89 (:work "Calibri") 91 (:work "Calibri")
90 (:other "sans-serif")) 92 (_ "sans-serif"))
91 acdw-fonts/variable-size 12) 93 acdw-fonts/variable-size (acdw/system
94 (:work 14)
95 (_ 12)))
92 (acdw-fonts/set) 96 (acdw-fonts/set)
93 (acdw-fonts/setup-emoji-fonts "Segoe UI Emoji" 97 (acdw-fonts/setup-emoji-fonts "Segoe UI Emoji"
94 "Noto Color Emoji" 98 "Noto Color Emoji"