mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
36 lines
502 B
Lua
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",
|
|
}
|
|
}
|