diff options
-rw-r--r-- | early-init.el | 8 |
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 |