1local M = {
2 "nvim-treesitter/nvim-treesitter",
3 branch = "master",
4 lazy = false,
5 build = ":TSUpdate",
6
7 opts = {
8 ensure_installed = "all",
9 auto_install = true,
10 highlight = {
11 enable = true,
12 additional_vim_regex_highlighting = false,
13 },
14 indent = {
15 enable = true,
16 disable = {
17 "python"
18 }
19 },
20 matchup = {
21 enable = true,
22 },
23 },
24}
25
26return M