From 692aa83275a062f53a50b297c6f65e28eb1ab1d1 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Wed, 10 Apr 2024 12:27:54 -0700 Subject: [PATCH] Adjust Emacs font settings --- thoom-emacs/modules/thoom-theme.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/thoom-emacs/modules/thoom-theme.el b/thoom-emacs/modules/thoom-theme.el index 9a0e5ea..00068e8 100644 --- a/thoom-emacs/modules/thoom-theme.el +++ b/thoom-emacs/modules/thoom-theme.el @@ -23,12 +23,14 @@ (height . 60))) (setq thoom-font-candidates - '("FiraCode Nerd Font Mono" "Menlo")) + '("FiraCode Nerd Font Mono" "Fira Code" "Menlo" "Deja Vu Sans")) (defvar thoom-font (seq-find #'x-list-fonts thoom-font-candidates) "The default font to use.") (defvar thoom-font-size - 14 + (if ON-MAC + 14 + 12) "The default font size to use.") (modify-all-frames-parameters `((font . ,(concat thoom-font "-" (number-to-string thoom-font-size)))))