From edd7def651f0349e4698eb695e878742b746032e Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Wed, 17 May 2023 01:50:06 -0400 Subject: Add all the icons --- init.el | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/init.el b/init.el index 22d220b..209a9a4 100644 --- a/init.el +++ b/init.el @@ -130,6 +130,35 @@ (set-face-attribute 'variable-pitch nil :font "DejaVu Sans" :height 120 :weight 'regular) +;; --------------------------------- +;; Icons +;; ----- +;; Icons make it easy to recongnize +;; things with memorable logos. +;; --------------------------------- + +;; All the icons +(use-package all-the-icons + :straight t) +(all-the-icons-install-fonts t) + +;; Add icons to dired buffers +(use-package all-the-icons-dired + :straight t + :hook (dired-mode . all-the-icons-dired-mode)) + +;; Add icons to completion candidates +(use-package all-the-icons-completion + :straight t) +(add-hook 'marginalia-mode-hook #'all-the-icons-completion-marginalia-setup) + +;; Add icons to ivy menus +(use-package all-the-icons-ivy + :straight t + :init (add-hook 'after-init-hook 'all-the-icons-ivy-setup)) + + + ;; --------------------------------------------------------------------- ;;; Completion -- cgit v1.2.3