mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
24 lines
458 B
Lua
24 lines
458 B
Lua
return {
|
|
"folke/noice.nvim",
|
|
opts = {
|
|
notify = {
|
|
enabled = false,
|
|
},
|
|
lsp = {
|
|
override = {
|
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
|
["vim.lsp.util.stylize_markdown"] = true,
|
|
["cmp.entry.get_documentation"] = true,
|
|
},
|
|
progress = {
|
|
enabled = true,
|
|
},
|
|
hover = {
|
|
enabled = true,
|
|
},
|
|
signature = {
|
|
enabled = true,
|
|
},
|
|
},
|
|
},
|
|
}
|