starter/lua/plugins/ui.lua

27 lines
484 B
Lua
Raw Normal View History

2023-12-17 19:51:45 +08:00
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,
},
}