From 841c053ede6228e6577efb6679d70dd7de4a3d41 Mon Sep 17 00:00:00 2001 From: Nybkox Date: Thu, 27 Jun 2024 18:21:17 +0200 Subject: [PATCH] feat: hide starting supermaven notifications --- .../plugins/extras/coding/supermaven.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lua/lazyvim/plugins/extras/coding/supermaven.lua b/lua/lazyvim/plugins/extras/coding/supermaven.lua index c866e693..59864516 100644 --- a/lua/lazyvim/plugins/extras/coding/supermaven.lua +++ b/lua/lazyvim/plugins/extras/coding/supermaven.lua @@ -16,4 +16,21 @@ return { table.insert(opts.sources, { name = "supermaven", priority = 100 }) 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, + }, }