feat(nvim): noice opts added

border for the lsp hover and disable the notification for No information available
This commit is contained in:
Sergio Laín 2023-12-31 20:17:02 +01:00
parent 2150b359d4
commit 3921e27df4
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

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