diff --git a/dot_config/nvim/lua/plugins/treesitter.lua b/dot_config/nvim/lua/plugins/treesitter.lua index 992e797..40ba9b1 100644 --- a/dot_config/nvim/lua/plugins/treesitter.lua +++ b/dot_config/nvim/lua/plugins/treesitter.lua @@ -4,43 +4,7 @@ return { config = function() require'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" (the five listed parsers should always be installed) - ensure_installed = { - "bash", - "c", - "c_sharp", - "cmake", - "commonlisp", - "cpp", - "css", - "diff", - "dockerfile", - "fish", - "git_config", - "gitcommit", - "gitignore", - "go", - "html", - "javascript", - "jq", - "json", - "latex", - "lua", - "org", - "php", - "python", - "query", - "ruby", - "rust", - "scss", - "todotxt", - "toml", - "typescript", - "vim", - "vimdoc", - "vue", - "xml", - "yaml", - }, + ensure_installed = "all", -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false,