fix: Don't let lazy.nvim install missing plugins
This commit is contained in:
parent
57796225c0
commit
bcfbc610ab
1 changed files with 3 additions and 0 deletions
3
init.lua
3
init.lua
|
@ -16,6 +16,9 @@ local function getlockfilepath()
|
||||||
end
|
end
|
||||||
local lazyOptions = {
|
local lazyOptions = {
|
||||||
lockfile = getlockfilepath(),
|
lockfile = getlockfilepath(),
|
||||||
|
install = {
|
||||||
|
missing = false,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- NOTE: this the lazy wrapper. Use it like require('lazy').setup() but with an extra
|
-- NOTE: this the lazy wrapper. Use it like require('lazy').setup() but with an extra
|
||||||
|
|
Loading…
Reference in a new issue