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:
parent
ab4cb57f53
commit
09ea3e3742
1 changed files with 6 additions and 2 deletions
|
|
@ -14,6 +14,10 @@ vim.opt.rtp:prepend(lazypath)
|
|||
-- Initialize plugins, add a plugin by creating a new file in the plugins dir
|
||||
require("lazy").setup("plugs", {
|
||||
git = {
|
||||
timeout = 300
|
||||
}
|
||||
timeout = 300
|
||||
},
|
||||
dev = {
|
||||
path = "~/dev/git/",
|
||||
fallback = true,
|
||||
},
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue