dotfiles/home/.config/nvim/lua/plugins/noice.lua

22 lines
615 B
Lua

-- Replace much of neovim's default UI
-- with a modern replacement
return {
"folke/noice.nvim",
event = "VeryLazy",
dependencies = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" },
opts = {
lsp = {
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true,
},
},
presets = {
-- add a border to hover docs and signature help
lsp_doc_border = true,
},
},
}