Modify LazyVim configuration

This commit is contained in:
Fabio Scotto di Santolo
2025-07-24 17:39:12 +02:00
parent 95aa11f5d1
commit f5aa42c853
7 changed files with 126 additions and 21 deletions

View File

@@ -30,16 +30,16 @@ require("lazy").setup({
version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "tokyonight", "habamax" } },
install = { colorscheme = { "tokyonight", "habamax", "catppuccin" } },
checker = { enabled = true }, -- automatically check for plugin updates
performance = {
rtp = {
-- disable some rtp plugins
disabled_plugins = {
"gzip",
-- "matchit",
-- "matchparen",
-- "netrwPlugin",
"matchit",
"matchparen",
"netrwPlugin",
"tarPlugin",
"tohtml",
"tutor",
@@ -47,4 +47,5 @@ require("lazy").setup({
},
},
},
cache = true,
})