vim/lazy: add local dev path with fallback to git
This commit is contained in:
parent
51d24d9f93
commit
a2747da324
1 changed files with 6 additions and 1 deletions
|
@ -20,5 +20,10 @@ if not vim.loop.fs_stat(lazypath) then
|
|||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require('lazy').setup 'user.plugins'
|
||||
require('lazy').setup('user.plugins', {
|
||||
dev = {
|
||||
path = '~/Projects/nvim-plugins',
|
||||
fallback = true,
|
||||
},
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue