28 lines
430 B
Lua
28 lines
430 B
Lua
local spec = {
|
|
"folke/noice.nvim",
|
|
tag = "v2.0.0",
|
|
}
|
|
|
|
spec.event = "VeryLazy"
|
|
|
|
spec.opts = {
|
|
lsp = {
|
|
documentation = {
|
|
opts = {
|
|
border = { style = "rounded" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
spec.keys = {
|
|
{ "<leader>nd", "<cmd>NoiceDismiss<CR>" },
|
|
}
|
|
|
|
spec.dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
{ "rcarriga/nvim-notify", opts = { top_down = false } },
|
|
}
|
|
|
|
return spec
|