local status_ok, configs = pcall(require, "nvim-treesitter.configs") if not status_ok then return end configs.setup({ ensure_installed = { "lua", "vim", }, ignore_install = { "phpdoc" }, -- List of parsers to ignore installing highlight = { enable = true, disable = { "css" }, -- list of language that will be disabled additional_vim_regex_highlighting = false, }, -- context_commentstring = { -- enable = true, -- enable_autocmd = false, -- config = { -- Languages that have a single comment style -- typescript = "// %s", -- css = "/* %s */", -- scss = "/* %s */", -- html = "", -- svelte = "", -- vue = "", -- jsx = "{/* %s */}", -- json = "", -- }, -- }, rainbow = { enable = true, disable = { "html" }, equery = "rainbow-parens", strategy = require("ts-rainbow").strategy.global, }, autotag = { enable = true }, incremental_selection = { enable = true }, indent = { enable = true, disable = { "python", "css" } }, autopairs = { enable = true, }, })