diff options
author | William Carroll <wpcarro@gmail.com> | 2022-11-21T02·46-0800 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2022-11-21T17·12+0000 |
commit | c537cc6fcee5f5cde4b0e6f8c5d6dcd5d8e3690f (patch) | |
tree | 20ce9d3100c1eecd5328bc7ebdc6d6e436a6edf3 /users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el | |
parent | 878dc6c22717971f5dd4720f314f36c47a0c762e (diff) |
refactor(wpcarro/emacs): Simplify fonts.el r/5300
- Drop `cycle` and all associated methods - Fix call-sites depedencies Change-Id: I35304424c0c3925f5bf7771dec33e75d326d0961 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7315 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el')
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el b/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el index ce2f8beb7284..02904e83a50d 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el @@ -166,9 +166,7 @@ (when window-system ;; On OSX, JetBrainsMono is installed as "JetBrains Mono", and I'm ;; not sure how to change that. - (let ((font (if (memq window-system '(ns)) - "JetBrains Mono" - "JetBrainsMono"))) + (let ((font (if (memq window-system '(ns)) "JetBrains Mono" "JetBrainsMono"))) (fonts-set font) ;; Some themes (e.g. doom-acario-*) change the font for comments. This ;; should prevent that. |