From cd51704a0c2c7699f5be784d8a23482153d02bca Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 1 Feb 2026 22:31:48 -0800 Subject: [PATCH] Fix appearance setup: enable font and add nerd-icons - Remove :tangle no from font setting so JetBrainsMono gets applied - Add nerd-icons package (required by doom-modeline v4+) - Add :after nerd-icons to doom-modeline for proper load order Co-Authored-By: Claude Opus 4.5 --- dotfiles/emacs.d/README.org | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index bcd8ecde..996ad3cc 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -4181,9 +4181,15 @@ Ensure all themes that I use are installed: (use-package all-the-icons :demand t) #+END_SRC +** nerd-icons +#+BEGIN_SRC emacs-lisp +(use-package nerd-icons + :demand t) +#+END_SRC ** doom-modeline #+begin_src emacs-lisp (use-package doom-modeline + :after nerd-icons :commands doom-modeline-mode :custom (doom-modeline-height 40)) @@ -4280,7 +4286,7 @@ load-theme hook (See the heading below). (advice-add 'load-theme :after #'imalison:after-load-theme) #+END_SRC ** Set Font -#+BEGIN_SRC emacs-lisp :tangle no +#+BEGIN_SRC emacs-lisp (add-to-list 'default-frame-alist '(font . "JetBrainsMono Nerd Font-10:weight=medium")) #+END_SRC