12 lines
310 B
Lua
12 lines
310 B
Lua
return {
|
|
"MeanderingProgrammer/render-markdown.nvim",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
|
|
opts = {},
|
|
config = function()
|
|
require("render-markdown").setup({
|
|
bullet = {
|
|
right_pad = 1,
|
|
},
|
|
})
|
|
end,
|
|
}
|