✨ feat(nvim): noice opts added
border for the lsp hover and disable the notification for No information available
This commit is contained in:
parent
2150b359d4
commit
3921e27df4
1 changed files with 15 additions and 0 deletions
15
.config/nvim/lua/plugins/noice.lua
Normal file
15
.config/nvim/lua/plugins/noice.lua
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
return {
|
||||||
|
"folke/noice.nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
table.insert(opts.routes, {
|
||||||
|
filter = {
|
||||||
|
event = "notify",
|
||||||
|
find = "No information available",
|
||||||
|
},
|
||||||
|
opts = {
|
||||||
|
skip = true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
opts.presets.lsp_doc_border = true
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue