1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-18 12:00:02 +02:00

nvim/lua/user/plugins/lang/markdown.lua: update settings

This commit is contained in:
Henrik Hautakoski 2025-05-13 23:32:39 +02:00
parent 222602cf66
commit 6b1dcffbd6

View file

@ -21,14 +21,18 @@ return {
}, },
opts = { opts = {
latex = { enabled = false }, latex = { enabled = false },
heading = {
position = 'inline',
left_pad = 1,
right_pad = 1,
},
code = { code = {
style = 'normal', style = 'full',
language_pad = 1,
min_width = 45, min_width = 45,
left_pad = 2, left_pad = 2,
right_pad = 2, right_pad = 2,
border = 'thick', border = 'thick',
above = ' ',
below = ' ',
}, },
} }
} }