Disable noice notifications

Need testing, should close #12
This commit is contained in:
Alexander Navarro 2024-01-26 16:25:02 -03:00
parent 7b6cbaf8ff
commit 6544c201d6

View file

@ -4,15 +4,6 @@ return {
dependencies = { dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
{
"rcarriga/nvim-notify",
opts = {
background_colour = "#000000",
},
},
}, },
opts = { opts = {
presets = { presets = {
@ -77,6 +68,12 @@ return {
winhighlight = { Normal = "Normal", FloatBorder = "DiagnosticInfo" }, winhighlight = { Normal = "Normal", FloatBorder = "DiagnosticInfo" },
}, },
}, },
notify = {
enabled = false,
},
messages = {
enabled = false,
},
}, },
}, },
-- stylua: ignore -- stylua: ignore