require'nvim-treesitter'.setup { -- A list of parser names, or "all" ensure_installed = { "python" }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, -- Automatically install missing parsers when entering buffer auto_install = true, -- List of parsers to ignore installing (for "all") ignore_install = { }, highlight = { enable = true, disable = { "" }, additional_vim_regex_highlighting = false, }, incremental_selection = { enable = true, keymaps = { init_selection = '', node_incremental = '', scope_incremental = '', node_decremental = '', }, }, -- https://github.com/windwp/nvim-ts-autotag autotag = { enable = true, }, }