From 9c513cea10df21973099f110ee4d12457472c1ce Mon Sep 17 00:00:00 2001 From: larstvei Date: Mon, 1 May 2023 00:13:27 +0200 Subject: [PATCH] Change back to Source Code Pro as default font I'm not even sure I have a preference. --- init.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.org b/init.org index 4988689..da0e2d3 100644 --- a/init.org +++ b/init.org @@ -424,7 +424,9 @@ Pick the first of the following fonts that is installed on the system. #+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")) ((member "Fira Code" (font-family-list)) (set-face-attribute 'default nil :font "Fira Code-15"))