From 98e12fc1e44a1b54448c7a39121315effc03c4fe Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Sun, 11 Jun 2017 13:48:50 +0200 Subject: [PATCH] Use the beautiful Hasklig font when available --- init.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.org b/init.org index 6bf5130..f69d7d6 100644 --- a/init.org +++ b/init.org @@ -408,8 +408,8 @@ Use the [[http://www.levien.com/type/myfonts/inconsolata.html][Inconsolata]] font if it's installed on the system. #+BEGIN_SRC emacs-lisp - (cond ((member "Source Code Pro" (font-family-list)) - (set-face-attribute 'default nil :font "Source Code Pro-13")) + (cond ((member "Hasklig" (font-family-list)) + (set-face-attribute 'default nil :font "Hasklig-14")) ((member "Inconsolata" (font-family-list)) (set-face-attribute 'default nil :font "Inconsolata-14"))) #+END_SRC