mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 13:55:25 +01:00
24 lines
574 B
Lua
24 lines
574 B
Lua
return {
|
|
"MeanderingProgrammer/render-markdown.nvim",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-mini/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,
|
|
}
|