mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
23 lines
517 B
Lua
23 lines
517 B
Lua
return {
|
|
'MeanderingProgrammer/render-markdown.nvim',
|
|
dependencies = {
|
|
'nvim-tree/nvim-web-devicons',
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = { "markdown" }
|
|
}
|
|
}
|
|
},
|
|
opts = {
|
|
code = {
|
|
style = 'normal',
|
|
min_width = 45,
|
|
left_pad = 2,
|
|
right_pad = 2,
|
|
border = 'thick',
|
|
above = ' ',
|
|
below = ' ',
|
|
},
|
|
}
|
|
}
|