docs: Only show 2nd level headings in TOC
This commit is contained in:
14
.nvim.lua
Normal file
14
.nvim.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
-- https://github.com/hedyhli/markdown-toc.nvim
|
||||
--
|
||||
-- outline.nvim README uses markdown-toc to auto-update the ToC.
|
||||
-- The following config makes only second level headings be included.
|
||||
|
||||
local ok, mtoc = pcall(require, 'mtoc')
|
||||
if ok then
|
||||
mtoc.update_config({
|
||||
headings = {
|
||||
pattern = '^(##)%s+(.+)$',
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user