Update everything, improve autocomplete and snippets.

This commit is contained in:
Dan Chadwick
2024-11-11 12:05:28 -05:00
parent 63ae70fc67
commit a088a7565a
8 changed files with 107 additions and 109 deletions

View File

@@ -4,10 +4,10 @@ return {
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "php", "lua", "vim", "javascript", "html", "yaml", "twig" },
ensure_installed = { "php", "lua", "vim", "javascript", "html", "yaml", "twig", "vimdoc", "markdown", "markdown_inline" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
indent = { enable = true },
})
end
}