add list for treesitter parsers

This commit is contained in:
2022-03-26 16:37:19 +03:00
parent b8121b240b
commit 63959aec31

View File

@@ -1,5 +1,34 @@
require("nvim-treesitter.configs").setup({ require("nvim-treesitter.configs").setup({
ensure_installed = "maintained", ensure_installed = {
"bash",
"c",
"cmake",
"comment",
"cpp",
"css",
"dockerfile",
"go",
"gomod",
"graphql",
"html",
"javascript",
"jsdoc",
"json",
"jsonc",
"lua",
"make",
"markdown",
"prisma",
"python",
"rust",
"scss",
"svelte",
"toml",
"tsx",
"typescript",
"vim",
"yaml",
},
highlight = { highlight = {
enable = true, enable = true,
}, },