Lots of LSP lessons

This commit is contained in:
2025-06-08 16:41:51 +02:00
parent 5ecacb5d28
commit 98133dad03
6 changed files with 49 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
return {
"MeanderingProgrammer/render-markdown.nvim",
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
---@module 'render-markdown'
---@type render.md.UserConfig
opts = {},
ft = { "markdown" },
config = function()
require("render-markdown").setup({
completions = { lsp = { enabled = true } },
preset = "lazy",
heading = {
enabled = true,
},
checkbox = {
enabled = true,
},
wikilinks = {
enabled = true,
},
})
end,
}