Files
yadm/.config/nvim/lua/plugins/markdown.lua
2024-09-06 09:36:15 +02:00

26 lines
536 B
Lua

return { {
'richardbizik/nvim-toc',
ft = { "md", "markdown" },
config = true,
}, {
{
'ChuufMaster/markdown-toc',
opts = {
-- The heading level to match (i.e the number of "#"s to match to) max 6
heading_level_to_match = -1,
-- Set to True display a dropdown to allow you to select the heading level
ask_for_heading_level = true,
-- TOC default string
-- WARN
toc_format = '%s- [%s](<%s#%s>)',
}
}, {
'SCJangra/table-nvim',
ft = 'markdown',
opts = {},
}
} }