20 lines
457 B
Lua
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')
|