[neovim] Filter out 'written' messages in Noice

This commit is contained in:
Daniel Carrillo 2023-10-21 16:14:50 +02:00
parent dd2c521312
commit 4442e0afed
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 8 additions and 0 deletions

View File

@ -27,5 +27,13 @@ require("noice").setup({
},
opts = { skip = true },
},
{
filter = {
event = "msg_show",
kind = "",
find = "escrito", -- localized for "written"
},
opts = { skip = true },
},
},
})