mine-hyprdots/.config/nvim/lua/plugins/noice.lua
2024-09-12 22:26:43 +05:30

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,
}