File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 20
20
21
21
You can install this plugin using any plugin manager that supports GitHub repositories. Below are some examples:
22
22
23
+ Note: This plugin is lazy-loaded by default, so you don't need to worry about it slowing down your startup time.
24
+
23
25
## lazy.nvim
24
26
25
27
``` lua
26
28
{
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
29
31
}
30
32
```
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
+
31
44
## Vim-Plug
32
45
33
46
``` vim
34
47
Plug 'justinmk/vim-dirvish'
35
48
Plug 'brianhuster/dirvish-do.nvim'
36
49
```
50
+
51
+ > Note : If you use
37
52
# Configuration
38
53
39
54
You can configure the keymaps to your liking. Below is default configuration:
You can’t perform that action at this time.
0 commit comments