Update dirvish to git main, due to nerd-icons support

Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
magic_rb 2023-12-14 15:06:31 +01:00
parent 3a2e719b9c
commit e01811711e
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -17,7 +17,7 @@ First install [[https://github.com/alexluigit/dirvish][dirvish]], a improved ver
#+begin_src emacs-lisp :noweb yes :exports none
(use-package dirvish
:straight t
:straight t; (dirvish :type git :host nil :repo "https://github.com/alexluigit/dirvish")
:init
(dirvish-override-dired-mode)
:custom
@ -36,9 +36,6 @@ First install [[https://github.com/alexluigit/dirvish][dirvish]], a improved ver
<<dirvish-bindings>>)
#+end_src
#+RESULTS:
: dirvish-fd-jump
Add frequently visited diretories, they're accessible from the ~dirvish-mode-map~ under the prefix ~a~.
#+name: dirvish-quick-access-entries
@ -57,7 +54,7 @@ Enable more attributes in dirvish buffers.
#+name: dirvish-attributes
#+begin_src emacs-lisp :tangle no
(setq dirvish-attributes
'(all-the-icons file-time file-size collapse subtree-state vc-state git-msg))
'(nerd-icons file-time file-size collapse subtree-state vc-state git-msg))
#+end_src
#+begin_src emacs-lisp
@ -146,4 +143,3 @@ In sideview Dirvish buffers, I don't want ~RET~ to narrow to a directory, it mak
(advice-add 'dirvish-side :around #'dirvish-side-obey-display-actions)
#+end_src
#+RESULTS: