dotfiles/private_dot_config/nvim/lua/plugins/noice.lua
2024-04-15 07:42:08 +02:00

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',
}
}