diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index f5063f1..9949ed7 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,7 +1,17 @@ return function() require 'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" - ensure_installed = "all", + ensure_installed = { "awk", "bash", "c", "cmake", "comment", "cpp", + "css", "csv", "devicetree", "diff", "dockerfile", "git_config", + "git_rebase", "gitattributes", "gitcommit", "go", "graphql", + "hjson", "html", "htmldjango", "http", "ini", "java", "javascript", + "jsdoc", "json", "json5", "jsonc", "kconfig", "latex", "llvm", + "lua", "luadoc", "make", "markdown", "markdown_inline", "mermaid", + "nix", "org", "passwd", "pem", "perl", "php", "php_only", "phpdoc", + "pod", "printf", "promql", "properties", "python", + "regex", "requirements", "ruby", "sql", "ssh_config", "strace", + "terraform", "toml", "typescript", "vim", "vimdoc", "xml", "yaml", + }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = true,