This has been done now because of [LazyVim#524] and replaces `help` with
`vimdoc`. While I was there, I also added `c` and removed a few I've
never heard of.
[LazyVim#524]: https://github.com/LazyVim/LazyVim/issues/524
--- /dev/null
+return {
+ -- add more treesitter parsers
+ {
+ "nvim-treesitter/nvim-treesitter",
+ opts = {
+ -- overwrites the settings from LazyVim
+ ensure_installed = {
+ "bash",
+ "c",
+ "html",
+ "json",
+ "lua",
+ "markdown",
+ "markdown_inline",
+ "python",
+ "regex",
+ "vim",
+ "vimdoc",
+ "yaml",
+ },
+ },
+ },
+}