feat: hide starting supermaven notifications

This commit is contained in:
Nybkox 2024-06-27 18:21:17 +02:00 committed by Folke Lemaitre
parent 39b23db674
commit 841c053ede

View file

@ -16,4 +16,21 @@ return {
table.insert(opts.sources, { name = "supermaven", priority = 100 }) table.insert(opts.sources, { name = "supermaven", priority = 100 })
end, end,
}, },
{
"folke/noice.nvim",
opts = function(_, opts)
vim.list_extend(opts.routes, {
{
filter = {
event = "msg_show",
any = {
{ find = "Starting Supermaven" },
{ find = "Supermaven Free Tier" },
},
},
skip = true,
},
})
end,
},
} }