nvim: Disable additional builtin plugins

This commit is contained in:
Marty Oehme 2025-02-07 14:36:57 +01:00
parent bff8f07e60
commit 1e2246aa51
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -40,7 +40,17 @@ require("lazy").setup({
spec = { spec }, spec = { spec },
defaults = { lazy = true, version = "*" }, defaults = { lazy = true, version = "*" },
performance = { performance = {
rtp = { disabled_plugins = { "netrw", "netrwPlugin" } }, rtp = {
disabled_plugins = {
"netrw",
"netrwPlugin",
"gzip",
"tarPlugin",
"tohtml",
"tutor",
"zipPlugin",
},
},
cache = { enable = true }, cache = { enable = true },
}, },
}) })