nvim/lua/cosmic/plugins/noice/init.lua
2022-12-22 10:47:10 -08:00

20 lines
457 B
Lua

require('noice').setup({
views = {
notify = {
merge = true,
},
},
lsp = {
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
hover = {
enabled = false,
},
override = {
['vim.lsp.util.convert_input_to_markdown_lines'] = true,
['vim.lsp.util.stylize_markdown'] = true,
['cmp.entry.get_documentation'] = true,
},
},
})
require('cosmic.plugins.noice.mappings')