diff options
author | Case Duckworth | 2021-08-23 17:29:12 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-23 17:29:12 -0500 |
commit | 876ffc0fbce594ba0316c9e8756e2afaea4799c2 (patch) | |
tree | bf941fe10e768201715d22ffa6a093578e358219 | |
parent | Remove M-/ bind for completion-at-point shadowing hippie (diff) | |
download | emacs-876ffc0fbce594ba0316c9e8756e2afaea4799c2.tar.gz emacs-876ffc0fbce594ba0316c9e8756e2afaea4799c2.zip |
Change font loading order to look for Consolas first
-rw-r--r-- | early-init.el | 4 |
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) |