From dbb8a3936b863c018cb0951981042d09aa85cab8 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Wed, 25 Aug 2021 18:05:40 -0500 Subject: [PATCH] Add "DejaVu Sans Mono Book" to font load list --- early-init.el | 8 +++++--- 1 file 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." (add-hook 'after-make-frame-functions (defun after-make-frame@setup (&rest args) (ignore args) - (let ((monospace-faces '((:font "Consolas" :height 100) - (:font "DejaVu Sans Mono" :height 100) - (:font "monospace" :height 100)))) + (let ((monospace-faces + '((:font "Consolas" :height 100) + (:font "DejaVu Sans Mono" :height 100) + (:font "DejaVu Sans Mono Book" :height 100) + (:font "monospace" :height 100)))) (acdw/set-first-face-attribute 'default monospace-faces) (acdw/set-first-face-attribute 'fixed-pitch monospace-faces) (acdw/set-first-face-attribute 'variable-pitch