1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2026-04-26 21:31:35 +00:00
Files
dotfiles/.config/nvim/lua/plugins/treesitter.lua
T

35 lines
439 B
Lua

require("tree-sitter-manager").setup({
ensure_installed = {
"bash",
"comment",
"diff",
"go",
"gomod",
"gosum",
"gowork",
"helm",
"java",
"javascript",
"json",
"kotlin",
"lua",
"make",
"markdown",
"markdown_inline",
"python",
"regex",
"sql",
"terraform",
"tsx",
"typescript",
"vim",
"vimdoc",
"yaml",
},
auto_install = true,
highlight = {
enable = true,
disable = { "css" },
},
})