From 25d77fed2b22743f52c5d18523db5b16eea16f4f Mon Sep 17 00:00:00 2001 From: Rahul Martim Juliato Date: Wed, 16 Jul 2025 18:56:10 -0300 Subject: [PATCH] feat(magit): support for nerd-icons --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index 45301d1..c760a0b 100644 --- a/init.el +++ b/init.el @@ -826,6 +826,9 @@ (use-package magit :ensure t :straight t + :config + (if ek-use-nerd-fonts ;; Check if nerd fonts are being used + (setopt magit-format-file-function #'magit-format-file-nerd-icons)) ;; Turns on magit nerd-icons :defer t)