Files
neovim-config/lua/taken/plugins/markdown.lua
2025-04-12 11:58:10 +02:00

19 lines
517 B
Lua

--- @type LazyPluginSpec
return {
"MeanderingProgrammer/render-markdown.nvim",
ft = { "markdown", "Avante" },
dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-tree/nvim-web-devicons" },
config = function()
require("render-markdown").setup({
heading = {
width = "block",
},
code = {
sign = true,
width = "block",
},
file_types = { "markdown", "Avante" },
})
end,
}