Change back to Source Code Pro as default font

I'm not even sure I have a preference.
This commit is contained in:
larstvei 2023-05-01 00:13:27 +02:00
parent 59d02282ee
commit 9c513cea10

View File

@ -424,7 +424,9 @@
Pick the first of the following fonts that is installed on the system. Pick the first of the following fonts that is installed on the system.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(cond ((member "Roboto Mono" (font-family-list)) (cond ((member "Source Code Pro" (font-family-list))
(set-face-attribute 'default nil :font "Source Code Pro-15"))
((member "Roboto Mono" (font-family-list))
(set-face-attribute 'default nil :font "Roboto Mono-14")) (set-face-attribute 'default nil :font "Roboto Mono-14"))
((member "Fira Code" (font-family-list)) ((member "Fira Code" (font-family-list))
(set-face-attribute 'default nil :font "Fira Code-15")) (set-face-attribute 'default nil :font "Fira Code-15"))