require("nvim-treesitter.configs").setup({ -- A list of parser names, or "all" (the four listed parsers should always be installed) ensure_installed = { "bash", "c", "css", "dart", "diff", "dockerfile", "git_rebase", "gitattributes", "gitcommit", "gitignore", "go", "gomod", "gosum", "gowork", "help", "html", "java", "javascript", "json", "lua", "markdown", "rust", "toml", "typescript", "vim", "vue", "yaml", }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = true, -- Automatically install missing parsers when entering buffer -- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally auto_install = true, -- List of parsers to ignore installing (for "all") ignore_install = {}, ---- If you need to change the installation directory of the parsers (see -> Advanced Setup) -- parser_install_dir = "/some/path/to/store/parsers", -- Remember to run vim.opt.runtimepath:append("/some/path/to/store/parsers")! incremental_selection = { enable = true, keymaps = { init_selection = "", node_incremental = "", node_decremental = "", scope_incremental = "", }, }, indent = { enable = true, }, highlight = { enable = true, additional_vim_regex_highlighting = false, }, autotag = { enable = true, }, })