feat(nvim): disable noice lsp progress

This commit is contained in:
Sergio Laín 2025-08-27 13:18:54 +02:00
parent bd9319bf55
commit 5e06ef8bcf
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438

View file

@ -1,16 +1,14 @@
return {
"folke/noice.nvim",
opts = function(_, opts)
table.insert(opts.routes, {
filter = {
event = "notify",
find = "No information available",
},
opts = {
skip = true,
lsp = {
progress = {
enabled = false,
},
},
presets = {
lsp_doc_border = true,
bottom_search = false,
},
},
})
opts.presets.lsp_doc_border = true
opts.presets.bottom_search = false
end,
}