Lazy's default path for locally developed plugins is now ~/dev/git, also

fallback to repository if no local plugin is found
This commit is contained in:
Martin Larsson 2025-05-26 17:37:06 +02:00
parent ab4cb57f53
commit 09ea3e3742

View file

@ -15,5 +15,9 @@ vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugs", {
git = {
timeout = 300
}
},
dev = {
path = "~/dev/git/",
fallback = true,
},
})