summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-08-25 18:05:40 -0500
committerCase Duckworth2021-08-25 18:06:07 -0500
commitdbb8a3936b863c018cb0951981042d09aa85cab8 (patch)
tree224c59fa3bb4a445a4b10ec63e188b5122fe16de /early-init.el
parentMake C-w work right in paredit-mode (diff)
downloademacs-dbb8a3936b863c018cb0951981042d09aa85cab8.tar.gz
emacs-dbb8a3936b863c018cb0951981042d09aa85cab8.zip
Add "DejaVu Sans Mono Book" to font load list
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/early-init.el b/early-init.el index bab026c..dd4de60 100644 --- a/early-init.el +++ b/early-init.el
@@ -81,9 +81,11 @@ 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 "Consolas" :height 100) 84 (let ((monospace-faces
85 (:font "DejaVu Sans Mono" :height 100) 85 '((:font "Consolas" :height 100)
86 (:font "monospace" :height 100)))) 86 (:font "DejaVu Sans Mono" :height 100)
87 (:font "DejaVu Sans Mono Book" :height 100)
88 (:font "monospace" :height 100))))
87 (acdw/set-first-face-attribute 'default monospace-faces) 89 (acdw/set-first-face-attribute 'default monospace-faces)
88 (acdw/set-first-face-attribute 'fixed-pitch monospace-faces) 90 (acdw/set-first-face-attribute 'fixed-pitch monospace-faces)
89 (acdw/set-first-face-attribute 'variable-pitch 91 (acdw/set-first-face-attribute 'variable-pitch