aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el29
1 files changed, 29 insertions, 0 deletions
diff --git a/init.el b/init.el
index 22d220b..209a9a4 100644
--- a/init.el
+++ b/init.el
@@ -130,6 +130,35 @@
130(set-face-attribute 'variable-pitch nil :font "DejaVu Sans" :height 120 :weight 'regular) 130(set-face-attribute 'variable-pitch nil :font "DejaVu Sans" :height 120 :weight 'regular)
131 131
132 132
133;; ---------------------------------
134;; Icons
135;; -----
136;; Icons make it easy to recongnize
137;; things with memorable logos.
138;; ---------------------------------
139
140;; All the icons
141(use-package all-the-icons
142 :straight t)
143(all-the-icons-install-fonts t)
144
145;; Add icons to dired buffers
146(use-package all-the-icons-dired
147 :straight t
148 :hook (dired-mode . all-the-icons-dired-mode))
149
150;; Add icons to completion candidates
151(use-package all-the-icons-completion
152 :straight t)
153(add-hook 'marginalia-mode-hook #'all-the-icons-completion-marginalia-setup)
154
155;; Add icons to ivy menus
156(use-package all-the-icons-ivy
157 :straight t
158 :init (add-hook 'after-init-hook 'all-the-icons-ivy-setup))
159
160
161
133 162
134;; --------------------------------------------------------------------- 163;; ---------------------------------------------------------------------
135;;; Completion 164;;; Completion