dotfiles/dot_config/nvim/lua/config/treesitter.lua
2022-10-11 07:40:50 +02:00

45 lines
649 B
Lua

require("nvim-treesitter.configs").setup({
auto_install = true,
ignore_install = {
-- woulnd't install sometimes, not needed
"phpdoc",
},
highlight = {
enable = true,
},
ensure_installed = {
"bash",
"css",
"dockerfile",
"go",
"gomod",
"graphql",
"help",
"hjson",
"html",
"http",
"javascript",
"jsdoc",
"json",
"json5",
"jsonc",
"latex",
"lua",
"make",
"markdown",
"php",
"prisma",
"python",
"regex",
"rust",
"scss",
"sql",
"svelte",
"teal",
"toml",
"tsx",
"typescript",
"vim",
"yaml",
},
})