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

@ -14,6 +14,10 @@ vim.opt.rtp:prepend(lazypath)
-- Initialize plugins, add a plugin by creating a new file in the plugins dir -- Initialize plugins, add a plugin by creating a new file in the plugins dir
require("lazy").setup("plugs", { require("lazy").setup("plugs", {
git = { git = {
timeout = 300 timeout = 300
} },
dev = {
path = "~/dev/git/",
fallback = true,
},
}) })