enable noice for lsp stuff again
This commit is contained in:
parent
aefbe0981e
commit
fb1d6b670f
|
@ -335,22 +335,22 @@ local plugins = {
|
||||||
require("noice").setup {
|
require("noice").setup {
|
||||||
lsp = {
|
lsp = {
|
||||||
override = {
|
override = {
|
||||||
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
-- ["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
||||||
["vim.lsp.util.stylize_markdown"] = true,
|
-- ["vim.lsp.util.stylize_markdown"] = true,
|
||||||
["cmp.entry.get_documentation"] = true,
|
-- ["cmp.entry.get_documentation"] = true,
|
||||||
},
|
},
|
||||||
-- IDK how to disable the nvchad builtins for this, which would
|
-- IDK how to disable the nvchad builtins for this, which would
|
||||||
-- produce a conflict
|
-- produce a conflict
|
||||||
signature = { enabled = false },
|
signature = { enabled = true },
|
||||||
hover = { enabled = false },
|
hover = { enabled = true },
|
||||||
},
|
},
|
||||||
-- you can enable a preset for easier configuration
|
-- you can enable a preset for easier configuration
|
||||||
presets = {
|
presets = {
|
||||||
bottom_search = true, -- use a classic bottom cmdline for search
|
bottom_search = true, -- use a classic bottom cmdline for search
|
||||||
command_palette = true, -- position the cmdline and popupmenu together
|
command_palette = true, -- position the cmdline and popupmenu together
|
||||||
long_message_to_split = true, -- long messages will be sent to a split
|
long_message_to_split = true, -- long messages will be sent to a split
|
||||||
inc_rename = false, -- enables an input dialog for inc-rename.nvim
|
inc_rename = true, -- enables an input dialog for inc-rename.nvim
|
||||||
lsp_doc_border = false, -- add a border to hover docs and signature help
|
lsp_doc_border = true, -- add a border to hover docs and signature help
|
||||||
},
|
},
|
||||||
messages = {
|
messages = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
|
|
Loading…
Reference in New Issue