25 lines
507 B
Lua
25 lines
507 B
Lua
return {
|
|
'folke/noice.nvim',
|
|
event = 'VeryLazy',
|
|
opts = {
|
|
-- add any options here
|
|
lsp = {
|
|
override = {
|
|
['vim.lsp.util.convert_input_to_markdown_lines'] = true,
|
|
['vim.lsp.util.stylize_markdown'] = true,
|
|
['cmp.entry.get_documentation'] = true,
|
|
},
|
|
},
|
|
},
|
|
config = function()
|
|
local noice = require 'noice'
|
|
noice.setup {
|
|
-- any options for noice
|
|
}
|
|
end,
|
|
dependencies = {
|
|
'MunifTanjim/nui.nvim',
|
|
'rcarriga/nvim-notify',
|
|
},
|
|
}
|