mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
22 lines
553 B
Lua
22 lines
553 B
Lua
return {
|
|
"MeanderingProgrammer/render-markdown.nvim",
|
|
opts = {
|
|
heading = {
|
|
sign = false,
|
|
icons = { "> ", "> " },
|
|
width = { "full", "block" },
|
|
left_pad = 1,
|
|
right_pad = 2,
|
|
},
|
|
checkbox = {
|
|
enabled = true,
|
|
unchecked = { icon = " ", highlight = "RenderMarkdownUnchecked" },
|
|
checked = { icon = " ", highlight = "RenderMarkdownChecked" },
|
|
},
|
|
bullet = {
|
|
enabled = true,
|
|
icons = { "●", "○", "◆", "◇" },
|
|
},
|
|
anti_conceal = { enabled = false },
|
|
},
|
|
}
|