20 lines
411 B
Lua
20 lines
411 B
Lua
return {
|
|
"MeanderingProgrammer/render-markdown.nvim",
|
|
ft = { "markdown", "norg", "rmd", "org", "codecompanion" },
|
|
config = function()
|
|
require("render-markdown").setup({
|
|
code = {
|
|
sign = false,
|
|
width = "block",
|
|
right_pad = 1,
|
|
},
|
|
heading = {
|
|
sign = false,
|
|
icons = {},
|
|
},
|
|
checkbox = {
|
|
enabled = false,
|
|
},
|
|
})
|
|
end,
|
|
}
|