19 lines
517 B
Lua
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,
|
|
}
|