Add diff and scss to the list of auto-downloaded treesitter parsers

This commit is contained in:
Kevin MacMartin 2024-03-28 21:43:00 -04:00
parent 571ec0a009
commit 37be82d294

View file

@ -10,7 +10,7 @@ if (vim.g.enabletreesitter == 1) then
vim.opt.runtimepath:append(parser_dir) vim.opt.runtimepath:append(parser_dir)
require("nvim-treesitter.configs").setup({ require("nvim-treesitter.configs").setup({
ensure_installed = { "bash", "c", "cpp", "css", "git_config", "go", "html", "java", "javascript", "json", "lua", "php", "python", "query", "rust", "toml", "typescript", "vim", "vimdoc", "vue" }, ensure_installed = { "bash", "c", "cpp", "css", "diff", "git_config", "go", "html", "java", "javascript", "json", "lua", "php", "python", "query", "rust", "scss", "toml", "typescript", "vim", "vimdoc", "vue" },
sync_install = true, sync_install = true,
auto_install = true, auto_install = true,
parser_install_dir = parser_dir, parser_install_dir = parser_dir,