From 4a38e1b8cba41a0ad6688c5f303df72dacb15b0b Mon Sep 17 00:00:00 2001 From: DavidCromp Date: Fri, 2 Dec 2022 12:44:21 -0500 Subject: [PATCH] Update Font to JuliaMono --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index 7fd72c4..a4c9c68 100644 --- a/init.el +++ b/init.el @@ -31,6 +31,12 @@ (tool-bar-mode -1) (scroll-bar-mode -1) +;; Set custom font to Julia-Mono +(set-face-attribute 'default t + :family "JuliaMono" + :height 150 + :weight 'normal) + ;; Set location of custom theme dir (setq custom-theme-directory (concat user-emacs-directory "themes")) (load-theme 'UniverseHighContrast)