From 2d8bfe397089df930e1d54914108bb3ceeba0bb4 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Mon, 20 Oct 2025 17:01:26 +0200 Subject: [PATCH] feat(lazy): disable some default plugins. --- lua/config/lazy.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index a2a92ab..b5bab23 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -28,4 +28,18 @@ require("lazy").setup({ rocks = { enabled = false }, + performance = { + rtp = { + disabled_plugins = { + "gzip", + "matchit", + "matchparen", + "netrwPlugin", + "tarPlugin", + "tohtml", + "tutor", + "zipPlugin", + }, + }, + }, })