1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-20 06:02:38 +00:00
dotfiles/.config/nvim/lua/plugins/treesitter.lua

38 lines
489 B
Lua

require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"diff",
"go",
"gomod",
"gowork",
"java",
"javascript",
"json",
"kotlin",
"lua",
"make",
"markdown",
"markdown_inline",
"python",
"regex",
"sql",
"terraform",
"tsx",
"typescript",
"vim",
"vimdoc",
"yaml",
},
highlight = {
enable = true,
disable = { "css" },
},
autopairs = {
enable = true,
},
indent = {
enable = true,
disable = { "python", "css" },
},
})