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)))))