Change font loading order to look for Consolas first

This commit is contained in:
Case Duckworth 2021-08-23 17:29:12 -05:00
parent 06324fa950
commit 876ffc0fbc
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@ say, `tool-bar-mode' once to toggle the tool bar back on."
(add-hook 'after-make-frame-functions
(defun after-make-frame@setup (&rest args)
(ignore args)
(let ((monospace-faces '((:font "DejaVu Sans Mono" :height 100)
(:font "Consolas" :height 100)
(let ((monospace-faces '((:font "Consolas" :height 100)
(:font "DejaVu Sans Mono" :height 100)
(:font "monospace" :height 100))))
(acdw/set-first-face-attribute 'default monospace-faces)
(acdw/set-first-face-attribute 'fixed-pitch monospace-faces)