Skip to content

Commit

Permalink
[nvim] add more filters to noice
Browse files Browse the repository at this point in the history
  • Loading branch information
w3ye committed Sep 1, 2024
1 parent f1944ed commit 26994e1
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions nvim/.config/nvim/lua/plugins/noice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,17 @@ local routes = {
},
{
filter = {
event = "",
event = "notify.info",
kind = "",
find = "",
find = "No information available",
},
opts = { skip = true },
},
{
filter = {
event = "notify.info",
kind = "",
find = "No signature help available",
},
opts = { skip = true },
},
Expand All @@ -37,6 +45,11 @@ return {
"folke/noice.nvim",
event = "VeryLazy",
opts = {
views = {
split = {
enter = false,
},
},
redirect = {
view = "messages",
filter = { event = "msg_show" },
Expand Down

0 comments on commit 26994e1

Please sign in to comment.