init.lua/lua/configs/treesitter.lua(view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
require("nvim-treesitter.configs").setup {
ensure_installed = {
"lua",
"go",
"gomod",
"gowork",
"python",
"clojure",
"yaml",
"make",
"comment",
},
indent = { enable = true, disable = { "python" } },
highlight = { enable = true, additional_vim_regex_highlighting = false },
context_commentstring = { enable = true, enable_autocmd = false },
autopairs = { enable = true },
endwise = { enable = true },
rainbow = { enable = true },
}
|