Disable plugin auto update

This commit is contained in:
Marcelo Jacobus 2024-07-05 11:17:48 -03:00
parent 542b796cf3
commit 93bcf21190
2 changed files with 5 additions and 1 deletions

View file

@ -66,7 +66,7 @@ require("lazy").setup({
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "tokyonight", "habamax" } },
checker = { enabled = true }, -- automatically check for plugin updates
checker = { enabled = false }, -- automatically check for plugin updates
performance = {
rtp = {
-- disable some rtp plugins

4
lua/plugins/notify.lua Normal file
View file

@ -0,0 +1,4 @@
return {
"rcarriga/nvim-notify",
-- enabled = false,
}