feat: add support for Markdown rendering with custom heading borders

This commit is contained in:
2024-09-24 14:50:41 -04:00
parent aa5351d41f
commit 58b141dcca
+14
View File
@@ -43,4 +43,18 @@ return {
{ -- Jinja
"armyers/Vim-Jinja2-Syntax",
},
{ -- Render-markdown
"MeanderingProgrammer/render-markdown.nvim",
opts = {
heading = {
-- Determins if a border is added above and below headings
border = true,
above = "",
-- Used below heading for border
below = "🮂",
},
file_types = { "markdown", "Avante" },
},
ft = { "markdown", "Avante" },
},
}