Skip to content

Commit 6679d5f

Browse files
committed
update
1 parent 074db33 commit 6679d5f

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,35 @@
2020

2121
You can install this plugin using any plugin manager that supports GitHub repositories. Below are some examples:
2222

23+
Note: This plugin is lazy-loaded by default, so you don't need to worry about it slowing down your startup time.
24+
2325
## lazy.nvim
2426

2527
```lua
2628
{
27-
'brianhuster/dirvish-do.nvim',
28-
dependencies = {'justinmk/vim-dirvish'}
29+
'brianhuster/dirvish-do.nvim',
30+
--- No need to specify dependencies as lazy.nvim supports loading dependencies information from pkg.json
2931
}
3032
```
33+
34+
## mini.deps
35+
```lua
36+
MiniDeps.add({
37+
source = 'brianhuster/dirvish-do.nvim',
38+
depends = {
39+
'justinmk/vim-dirvish',
40+
},
41+
})
42+
```
43+
3144
## Vim-Plug
3245

3346
```vim
3447
Plug 'justinmk/vim-dirvish'
3548
Plug 'brianhuster/dirvish-do.nvim'
3649
```
50+
51+
> Note : If you use
3752
# Configuration
3853

3954
You can configure the keymaps to your liking. Below is default configuration:

0 commit comments

Comments
 (0)