dotfiles/.config/nvim/lua/plugins/noice.lua
Sergio Laín 3921e27df4
feat(nvim): noice opts added
border for the lsp hover and disable the notification for No information available
2023-12-31 20:17:02 +01:00

15 lines
285 B
Lua

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