summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-08-23 17:29:12 -0500
committerCase Duckworth2021-08-23 17:29:12 -0500
commit876ffc0fbce594ba0316c9e8756e2afaea4799c2 (patch)
treebf941fe10e768201715d22ffa6a093578e358219 /early-init.el
parentRemove M-/ bind for completion-at-point shadowing hippie (diff)
downloademacs-876ffc0fbce594ba0316c9e8756e2afaea4799c2.tar.gz
emacs-876ffc0fbce594ba0316c9e8756e2afaea4799c2.zip
Change font loading order to look for Consolas first
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/early-init.el b/early-init.el index e7d167f..bab026c 100644 --- a/early-init.el +++ b/early-init.el
@@ -81,8 +81,8 @@ say, `tool-bar-mode' once to toggle the tool bar back on."
81(add-hook 'after-make-frame-functions 81(add-hook 'after-make-frame-functions
82 (defun after-make-frame@setup (&rest args) 82 (defun after-make-frame@setup (&rest args)
83 (ignore args) 83 (ignore args)
84 (let ((monospace-faces '((:font "DejaVu Sans Mono" :height 100) 84 (let ((monospace-faces '((:font "Consolas" :height 100)
85 (:font "Consolas" :height 100) 85 (:font "DejaVu Sans Mono" :height 100)
86 (:font "monospace" :height 100)))) 86 (:font "monospace" :height 100))))
87 (acdw/set-first-face-attribute 'default monospace-faces) 87 (acdw/set-first-face-attribute 'default monospace-faces)
88 (acdw/set-first-face-attribute 'fixed-pitch monospace-faces) 88 (acdw/set-first-face-attribute 'fixed-pitch monospace-faces)