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 <noreply@anthropic.com>
This commit is contained in:
2026-02-01 22:31:48 -08:00
parent 03c8fd52a3
commit cd51704a0c

View File

@@ -4181,9 +4181,15 @@ Ensure all themes that I use are installed:
(use-package all-the-icons (use-package all-the-icons
:demand t) :demand t)
#+END_SRC #+END_SRC
** nerd-icons
#+BEGIN_SRC emacs-lisp
(use-package nerd-icons
:demand t)
#+END_SRC
** doom-modeline ** doom-modeline
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package doom-modeline (use-package doom-modeline
:after nerd-icons
:commands doom-modeline-mode :commands doom-modeline-mode
:custom :custom
(doom-modeline-height 40)) (doom-modeline-height 40))
@@ -4280,7 +4286,7 @@ load-theme hook (See the heading below).
(advice-add 'load-theme :after #'imalison:after-load-theme) (advice-add 'load-theme :after #'imalison:after-load-theme)
#+END_SRC #+END_SRC
** Set Font ** Set Font
#+BEGIN_SRC emacs-lisp :tangle no #+BEGIN_SRC emacs-lisp
(add-to-list 'default-frame-alist (add-to-list 'default-frame-alist
'(font . "JetBrainsMono Nerd Font-10:weight=medium")) '(font . "JetBrainsMono Nerd Font-10:weight=medium"))
#+END_SRC #+END_SRC