29 lines
699 B
Lua
29 lines
699 B
Lua
return {
|
|
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,
|
|
long_message_to_split = true,
|
|
inc_rename = false,
|
|
lsp_doc_border = false,
|
|
},
|
|
hover = {
|
|
enabled = true,
|
|
},
|
|
signature = {
|
|
enabled = true,
|
|
auto_open = {
|
|
enabled = true,
|
|
trigger = true, -- Automatically show signature help when typing a trigger character from the LSP
|
|
luasnip = true, -- Will open signature help when jumping to Luasnip insert nodes
|
|
throttle = 50, -- Debounce lsp signature help request by 50ms
|
|
},
|
|
},
|
|
}
|