mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-10 07:21:12 +00:00
38 lines
489 B
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" },
|
|
},
|
|
})
|