Disable nvim lazy update check

This commit is contained in:
Luka Jankovic 2025-01-15 11:18:26 +01:00
parent 7257228dbb
commit fa6cd03635

View file

@ -31,5 +31,5 @@ require("lazy").setup({
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "nord" } },
-- automatically check for plugin updates
checker = { enabled = true },
checker = { enabled = false },
})