35 lines
923 B
Lua
35 lines
923 B
Lua
return {
|
|
"folke/noice.nvim",
|
|
cond = not vim.g.vscode,
|
|
event = { "VeryLazy" },
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
"rcarriga/nvim-notify",
|
|
"stevearc/dressing.nvim",
|
|
},
|
|
config = true,
|
|
opts = {
|
|
presets = {
|
|
bottom_search = true,
|
|
command_palette = true,
|
|
long_message_to_split = true,
|
|
inc_rename = false,
|
|
lsp_doc_border = true,
|
|
},
|
|
lsp = {
|
|
override = {
|
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
|
["vim.lsp.util.stylize_markdown"] = true,
|
|
["cmp.entry.get_documentation"] = true,
|
|
},
|
|
},
|
|
views = {
|
|
mini = {
|
|
position = { row = -2 },
|
|
border = { style = "rounded" },
|
|
win_options = { winblend = 0 },
|
|
},
|
|
},
|
|
},
|
|
}
|