changeset 529:735fb9e8e6cb

replace dirvish with dirbuf
author zegervdv <zegervdv@me.com>
date Sat, 22 Jan 2022 16:08:24 +0100
parents 9af6e508f630
children 5e6d724bcd65
files .chezmoitemplates/init.lua
diffstat 1 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/.chezmoitemplates/init.lua	Fri Jan 21 15:51:36 2022 +0100
+++ b/.chezmoitemplates/init.lua	Sat Jan 22 16:08:24 2022 +0100
@@ -539,7 +539,16 @@
   }
 
   -- File navigation
-  use { 'justinmk/vim-dirvish', opt = true }
+  use {
+    'elihunter173/dirbuf.nvim',
+    opt = true,
+    config = function()
+      require('dirbuf').setup {
+        hash_padding = 2,
+        show_hidden = true,
+      }
+    end,
+  }
 
   -- Colorscheme
   use {
@@ -581,7 +590,7 @@
   use { 'lepture/vim-jinja' }
 end)
 
-vim.cmd [[ packadd vim-dirvish ]]
+vim.cmd [[ packadd dirbuf.nvim ]]
 
 -- Configuration
 local opt = vim.opt