Clean up stray thoom- prefix

This commit is contained in:
2024-10-03 14:50:13 -07:00
parent 36e61234ec
commit 52f49a9fc0

View File

@@ -452,18 +452,18 @@
(height . 60))) (height . 60)))
;;;; Fonts ;;;; Fonts
(setq thoom-font-candidates (setq my/font-candidates
'("FiraCode Nerd Font Mono" "Fira Code" "Menlo" "Deja Vu Sans")) '("FiraCode Nerd Font Mono" "Fira Code" "Menlo" "Deja Vu Sans"))
(defvar thoom-font (defvar my/font
(seq-find #'x-list-fonts thoom-font-candidates) (seq-find #'x-list-fonts my/font-candidates)
"The default font to use.") "The default font to use.")
(defvar thoom-font-size (defvar my/font-size
(if ON-MAC (if ON-MAC
14 14
12) 12)
"The default font size to use.") "The default font size to use.")
(modify-all-frames-parameters (modify-all-frames-parameters
`((font . ,(concat thoom-font "-" (number-to-string thoom-font-size))))) `((font . ,(concat my/font "-" (number-to-string my/font-size)))))
;;;; Hide clutter ;;;; Hide clutter
(setq inhibit-startup-message t (setq inhibit-startup-message t