aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-11 12:26:47 -0500
committerCraig Jennings <c@cjennings.net>2026-07-11 12:26:47 -0500
commit19a9377306ed71e28fc0dc71ad91975e52ef51a9 (patch)
tree068334150ef1db7e1a9f6cf654e804d6d8c35a06 /modules
parent5bee76514def9ca54c1bd52fb1a9c89ddfdab2ac (diff)
downloaddotemacs-19a9377306ed71e28fc0dc71ad91975e52ef51a9.tar.gz
dotemacs-19a9377306ed71e28fc0dc71ad91975e52ef51a9.zip
refactor(ui-config): drop the duplicate nerd-icons stanza
nerd-icons is owned by nerd-icons-config.el (:demand t, plus the dir-color advice and the completion and ibuffer integration). This bare :defer t re-declaration did nothing, so I removed it and its Commentary bullet.
Diffstat (limited to 'modules')
-rw-r--r--modules/ui-config.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/ui-config.el b/modules/ui-config.el
index fbc3d91c..9ac6faec 100644
--- a/modules/ui-config.el
+++ b/modules/ui-config.el
@@ -29,9 +29,6 @@
;; (i.e., read-only, overwrite, normal)
;; – Option to customize cursor shape with 'cj/set-cursor-type'
-;; • Icons
-;; – Load and enable 'nerd-icons' for UI glyphs
-
;; Customize the transparency and cursor color options at the top of this file.
;;; Code:
@@ -116,11 +113,5 @@ When `cj/enable-transparency' is nil, reset alpha to fully opaque."
;; burst when entering read-only buffers like EPUBs or vterm).
(blink-cursor-mode -1)
-;; --------------------------------- Nerd Icons --------------------------------
-;; use icons from nerd fonts in the Emacs UI
-
-(use-package nerd-icons
- :defer t)
-
(provide 'ui-config)
;;; ui-config.el ends here