diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-17 01:50:06 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-17 01:50:06 -0400 |
commit | edd7def651f0349e4698eb695e878742b746032e (patch) | |
tree | 248626f809396f755640bd7bfa3048b76e423296 | |
parent | Add school-related keywords to `org-todo-keywords` (diff) | |
download | mmosmacs-edd7def651f0349e4698eb695e878742b746032e.tar.gz mmosmacs-edd7def651f0349e4698eb695e878742b746032e.tar.bz2 mmosmacs-edd7def651f0349e4698eb695e878742b746032e.zip |
Add all the icons
-rw-r--r-- | init.el | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -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 |