dots/config/nvim/lua/neoconf/lazy/noice.lua
2026-06-05 13:11:08 +02:00

22 lines
564 B
Lua

-- lazy.nvim
return {
{
"folke/noice.nvim",
event = "VeryLazy",
opts = {
lsp = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
},
-- add any options here
},
dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
--- "rcarriga/nvim-notify",
},
},
}