mirror of https://github.com/LazyVim/starter
27 lines
484 B
Lua
27 lines
484 B
Lua
|
return {
|
||
|
{
|
||
|
"echasnovski/mini.animate",
|
||
|
event = "VeryLazy",
|
||
|
opts = function(_, opts)
|
||
|
opts.scroll = {
|
||
|
enabled = false,
|
||
|
}
|
||
|
end,
|
||
|
},
|
||
|
{
|
||
|
"folke/noice.nvim",
|
||
|
event = "VeryLazy",
|
||
|
opts = function(_, opts)
|
||
|
table.insert(opts.routes, {
|
||
|
filter = {
|
||
|
event = "notify",
|
||
|
find = "No information available",
|
||
|
},
|
||
|
opts = { skip = true },
|
||
|
})
|
||
|
|
||
|
opts.presets.lsp_doc_border = true
|
||
|
end,
|
||
|
},
|
||
|
}
|