31 lines
579 B
Lua
31 lines
579 B
Lua
return {
|
|
"folke/noice.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
lsp = {
|
|
override = {
|
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
|
["vim.lsp.util.convert_markdown_to_vim"] = true,
|
|
},
|
|
},
|
|
messages = {
|
|
view = "mini",
|
|
},
|
|
presets = {
|
|
bottom_scroll = true,
|
|
command_palette = true,
|
|
long_message_to_split = true,
|
|
},
|
|
},
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
"rcarriga/nvim-notify",
|
|
},
|
|
config = function()
|
|
require("noice").setup({
|
|
-- Custom setup options
|
|
})
|
|
end,
|
|
}
|
|
|
|
|