aboutsummaryrefslogtreecommitdiff
path: root/config/emacs/emacs.d/lisp
diff options
context:
space:
mode:
authorKenny Ballou <kb@devnulllabs.io>2021-11-09 13:07:04 -0700
committerKenny Ballou <kb@devnulllabs.io>2021-11-09 13:07:04 -0700
commitcf58ca3172b58e752ff1f1459c944f2a0d176bb6 (patch)
treee4e63f7fd26808590ac17249f4d4cee099f74876 /config/emacs/emacs.d/lisp
parent4a958b9462fc2ef454a2446f0d613868e7b23380 (diff)
downloaddotfiles-cf58ca3172b58e752ff1f1459c944f2a0d176bb6.tar.gz
dotfiles-cf58ca3172b58e752ff1f1459c944f2a0d176bb6.tar.xz
emacs: disable icons in dired and ibuffer
Sometimes I want to open folders with _lots_ of files. Motivation for this removal was a folder with 5k files. The minor benefit of seeing some icons on occasion is not worth the 5 to 10 minutes emacs completely locks up trying to display some icons. Spamming ^G and sending SIGUSR2 is maybe the reason it's _only_ 5 to 10 minutes... Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
Diffstat (limited to 'config/emacs/emacs.d/lisp')
-rw-r--r--config/emacs/emacs.d/lisp/init-icons.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/config/emacs/emacs.d/lisp/init-icons.el b/config/emacs/emacs.d/lisp/init-icons.el
index ac43b73e..f67867ff 100644
--- a/config/emacs/emacs.d/lisp/init-icons.el
+++ b/config/emacs/emacs.d/lisp/init-icons.el
@@ -8,14 +8,6 @@
(use-package all-the-icons)
-(use-package all-the-icons-dired
- :after all-the-icons
- :hook (dired-mode . all-the-icons-dired-mode))
-
-(use-package all-the-icons-ibuffer
- :after all-the-icons
- :hook (ibuffer-mode . all-the-icons-ibuffer-mode))
-
(provide 'init-icons)
;;; init-icons.el ends here