25 lines
665 B
Lua
25 lines
665 B
Lua
return {
|
|
'folke/noice.nvim',
|
|
event = 'VeryLazy',
|
|
opts = {
|
|
lsp = {
|
|
override = {
|
|
['vim.lsp.util.convert_input_to_markdown_lines'] = true,
|
|
['vim.lsp.util.stylize_markdown'] = true,
|
|
['cmp.entry.get_documentation'] = true,
|
|
},
|
|
},
|
|
presets = {
|
|
bottom_search = true,
|
|
command_palette = true,
|
|
}
|
|
},
|
|
dependencies = {
|
|
-- if you lazy-load any plugin below, make sure to add proper `module='...'` entries
|
|
'MunifTanjim/nui.nvim',
|
|
-- OPTIONAL:
|
|
-- `nvim-notify` is only needed, if you want to use the notification view.
|
|
-- If not available, we use `mini` as the fallback
|
|
'rcarriga/nvim-notify',
|
|
}
|
|
}
|