diff options
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/lazy.lua | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/lua/pml68/lazy.lua b/lua/pml68/lazy.lua index 6ac9111..86d2be5 100644 --- a/lua/pml68/lazy.lua +++ b/lua/pml68/lazy.lua @@ -13,4 +13,22 @@ vim.opt.rtp:prepend(lazypath) local plugins = require("pml68.plugins") -require("lazy").setup(plugins) +require("lazy").setup(plugins, { + defaults = { lazy = true }, + performance = { + cache = { + enabled = true, + }, + rtp = { + disabled_plugins = { + "matchit", + "matchparen", + "gzip", + "tarPlugin", + "tohtml", + "tutor", + "zipPlugin", + }, + }, + }, +}) |
