vim/lazy: add local dev path with fallback to git

This commit is contained in:
Fernando Schauenburg 2023-07-20 21:39:15 +02:00
parent 51d24d9f93
commit a2747da324

View file

@ -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,
},
})