fix: Disable annoying lazy.nvim popups

This commit is contained in:
Sayantan Santra 2025-04-15 23:34:02 -05:00
parent e0da358af8
commit 52cbe91e75
Signed by: SinTan1729
GPG key ID: 0538DD402EA50898
3 changed files with 3 additions and 3 deletions

View file

@ -94,5 +94,5 @@ require("lazy").setup({
}, },
lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json", lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json",
install = { missing = true, colorscheme = { "habamax" } }, install = { missing = true, colorscheme = { "habamax" } },
checker = { enabled = true }, checker = { enabled = true, notify = false },
}) })

View file

@ -62,6 +62,6 @@ require("lazy").setup({
}, },
lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json", lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json",
install = { missing = true, colorscheme = { "habamax" } }, install = { missing = true, colorscheme = { "habamax" } },
checker = { enabled = true }, checker = { enabled = true, notify = false },
}) })

View file

@ -62,6 +62,6 @@ require("lazy").setup({
}, },
lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json", lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json",
install = { missing = true, colorscheme = { "habamax" } }, install = { missing = true, colorscheme = { "habamax" } },
checker = { enabled = true }, checker = { enabled = true, notify = false },
}) })