11 lines
289 B
Lua
11 lines
289 B
Lua
|
-- Configure require("lazy").setup() options
|
||
|
return {
|
||
|
defaults = { lazy = true },
|
||
|
performance = {
|
||
|
rtp = {
|
||
|
-- customize default disabled vim plugins
|
||
|
disabled_plugins = { "tohtml", "gzip", "matchit", "zipPlugin", "netrwPlugin", "tarPlugin", "matchparen" },
|
||
|
},
|
||
|
},
|
||
|
}
|