diff options
author | Raul Benencia <raul@thousandeyes.com> | 2023-12-04 11:11:14 -0800 |
---|---|---|
committer | Raul Benencia <raul@thousandeyes.com> | 2023-12-04 11:11:14 -0800 |
commit | b49389dc0d5a1705cffb5a2c1e8986d83f8f110e (patch) | |
tree | b192f4f5bbbd73c7c3517375288bd676d9ddfbb1 | |
parent | 104dae266a52b1fa226cc16ef28a9c3153ef5e0e (diff) |
emacs: nerd-icons
-rw-r--r-- | .emacs.d/init.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 7e3ad99..9a64089 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -143,6 +143,13 @@ ("\\.\\(mp[34]\\|m4a\\|ogg\\|flac\\|webm\\|mkv\\)" "mpv" "xdg-open") (".*" "xdg-open"))) +;;; Icons +(use-package nerd-icons :ensure t ) +(use-package nerd-icons-dired :ensure t + :config + (add-hook 'dired-mode-hook #'nerd-icons-dired-mode) + ) + (dolist (path '("~/.emacs.d/rul-lisp/config" "~/.emacs.d/rul-lisp/packages")) (add-to-list 'load-path path)) |