config-files/lua/plugins/noice.lua

29 lines
536 B
Lua
Raw Permalink Normal View History

2025-11-30 02:06:38 -08:00
return {
"folke/noice.nvim",
event = "VeryLazy",
opts = {
-- your Noice options here!
-- e.g.:
lsp = {
progress = { enabled = true },
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true,
},
},
views = {
notify = {
enter = false,
timeout = 1500,
}
}
},
dependencies = {
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
}
}