1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-12-22 06:58:01 +00:00

[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

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 },
},
},
})