1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-02 01:39:26 +00:00

[neovim] Filter out 'written' messages in Noice

This commit is contained in:
2023-10-21 16:14:50 +02:00
parent dd2c521312
commit 4442e0afed

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