From 52f49a9fc0a97f80be92760a7de3256e725868e6 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Thu, 3 Oct 2024 14:50:13 -0700 Subject: [PATCH] Clean up stray thoom- prefix --- emacs/init.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/emacs/init.el b/emacs/init.el index 48a5a42..8f4b5fa 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -452,18 +452,18 @@ (height . 60))) ;;;; Fonts -(setq thoom-font-candidates +(setq my/font-candidates '("FiraCode Nerd Font Mono" "Fira Code" "Menlo" "Deja Vu Sans")) -(defvar thoom-font - (seq-find #'x-list-fonts thoom-font-candidates) +(defvar my/font + (seq-find #'x-list-fonts my/font-candidates) "The default font to use.") -(defvar thoom-font-size +(defvar my/font-size (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))))) + `((font . ,(concat my/font "-" (number-to-string my/font-size))))) ;;;; Hide clutter (setq inhibit-startup-message t