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 { return {
"folke/noice.nvim", "folke/noice.nvim",
opts = function(_, opts) opts = {
table.insert(opts.routes, { lsp = {
filter = { progress = {
event = "notify", enabled = false,
find = "No information available",
}, },
opts = { },
skip = true, presets = {
}, lsp_doc_border = true,
}) bottom_search = false,
opts.presets.lsp_doc_border = true },
opts.presets.bottom_search = false },
end,
} }