From 853fd6a57854e148d3f1bff0c5d26e634af0ebf4 Mon Sep 17 00:00:00 2001 From: Sameer Kumar Date: Fri, 11 Oct 2024 08:39:58 +0530 Subject: [PATCH] fix: typo in font name --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 945184e..cdbaf10 100644 --- a/init.el +++ b/init.el @@ -206,7 +206,7 @@ ;; Configure font settings based on the operating system. ;; Ok, this kickstart is meant to be used on the terminal, not on GUI. ;; But without this, I fear you could start Graphical Emacs and be sad :( - (set-face-attribute 'default nil :family "JetBrainsMono Nerd Front" :height 100) + (set-face-attribute 'default nil :family "JetBrainsMono Nerd Font" :height 100) (when (eq system-type 'darwin) ;; Check if the system is macOS. (setq mac-command-modifier 'meta) ;; Set the Command key to act as the Meta key. (set-face-attribute 'default nil :family "JetBrainsMono Nerd Font" :height 130))