29 lines
536 B
Lua
29 lines
536 B
Lua
|
|
return {
|
||
|
|
"folke/noice.nvim",
|
||
|
|
event = "VeryLazy",
|
||
|
|
opts = {
|
||
|
|
-- your Noice options here!
|
||
|
|
-- e.g.:
|
||
|
|
lsp = {
|
||
|
|
progress = { enabled = true },
|
||
|
|
override = {
|
||
|
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
||
|
|
["vim.lsp.util.stylize_markdown"] = true,
|
||
|
|
["cmp.entry.get_documentation"] = true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
views = {
|
||
|
|
notify = {
|
||
|
|
enter = false,
|
||
|
|
timeout = 1500,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
dependencies = {
|
||
|
|
"MunifTanjim/nui.nvim",
|
||
|
|
"rcarriga/nvim-notify",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|