Files
astronvim_config/plugins/treesitter.lua
Ismo Vuorinen 9929616f55 Fix configs
2023-02-16 17:05:13 +02:00

36 lines
502 B
Lua

return {
-- Automatically install missing parsers when entering buffer
auto_install = true,
ensure_installed = {
"help",
"bash",
"c",
"cmake",
"comment",
"diff",
"dockerfile",
"gitignore",
"graphql",
"html",
"javascript",
"json",
"json5",
"latex",
"lua",
"markdown",
"php",
"phpdoc",
"python",
"scss",
"sql",
"terraform",
"todotxt",
"toml",
"typescript",
"vim",
"vue",
"yaml",
}
}