From e01811711ef3123ea0ae11e2d7a7b6e6c8f32bc0 Mon Sep 17 00:00:00 2001 From: magic_rb Date: Thu, 14 Dec 2023 15:06:31 +0100 Subject: [PATCH] Update dirvish to git main, due to nerd-icons support Signed-off-by: magic_rb --- emacs-lisp/dirvish.org | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/emacs-lisp/dirvish.org b/emacs-lisp/dirvish.org index 03e84ac..d9317c5 100644 --- a/emacs-lisp/dirvish.org +++ b/emacs-lisp/dirvish.org @@ -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 <>) #+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: