diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-18 12:51:38 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-18 12:51:38 -0400 |
commit | bdf572136e1065c9813b4b3047e94521b3b0f1fd (patch) | |
tree | af0ac91b7125d507925dac080d5577e6b40d1968 /init.el | |
parent | Make HOME key respect indentation (diff) | |
download | mmosmacs-bdf572136e1065c9813b4b3047e94521b3b0f1fd.tar.gz mmosmacs-bdf572136e1065c9813b4b3047e94521b3b0f1fd.tar.bz2 mmosmacs-bdf572136e1065c9813b4b3047e94521b3b0f1fd.zip |
Fix `marginalia` / `all-the-icons` not showing up
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -177,7 +177,6 @@ | |||
177 | ;; All the icons | 177 | ;; All the icons |
178 | (use-package all-the-icons | 178 | (use-package all-the-icons |
179 | :straight t) | 179 | :straight t) |
180 | (all-the-icons-install-fonts t) | ||
181 | 180 | ||
182 | ;; Add icons to dired buffers | 181 | ;; Add icons to dired buffers |
183 | (use-package all-the-icons-dired | 182 | (use-package all-the-icons-dired |
@@ -261,9 +260,9 @@ | |||
261 | (use-package marginalia | 260 | (use-package marginalia |
262 | :straight t | 261 | :straight t |
263 | :config | 262 | :config |
264 | (setq marginalia-field-width 120 | 263 | (setq marginalia-field-width 120) |
265 | marginalia-max-relative-age 0) | 264 | :bind ("M-a" . marginalia-cycle) |
266 | :hook (emacs-startup-hook . marginalia-mode)) | 265 | :init (marginalia-mode)) |
267 | 266 | ||
268 | 267 | ||
269 | ;; --------------------------------- | 268 | ;; --------------------------------- |