fix(markdown): missing markdown-toc in mason (#3499)

missing `markdown-toc` in ensure installed for `extra/markdown`
This commit is contained in:
DrummyFloyd authored and GitHub committed 2024-06-06 16:22:40 +02:00
1 parent e51199cffa
commit a9aea4b5a1
1 file changed
+1 -1
+1 -1
View File
@@ -19,7 +19,7 @@ return {
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "markdownlint" })
vim.list_extend(opts.ensure_installed, { "markdownlint", "markdown-toc" })
end,
},
{