Remove 'jsonc' from Treesitter languages

It seems jsonc is [not supported](https://github.com/nvim-treesitter/nvim-treesitter/issues/1997#issuecomment-3657115364) by tresitter-nvim anymore, and it breaks when trying to install, with:

```
:TSInstallSync jsonc
Downloading tree-sitter-jsonc...
Creating temporary directory
Extracting tree-sitter-jsonc...

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now

Error during tarball extraction.
Failed to execute the following command:
{
  cmd = "tar",
  err = "Error during tarball extraction.",
  info = "Extracting tree-sitter-jsonc...",
  opts = {
    args = { "-xvzf", "tree-sitter-jsonc.tar.gz", "-C", "tree-sitter-jsonc-tmp" },
    cwd = "/home/guel/.local/share/nvim"
  }
}
Press ENTER or type command to continue
```

So I think it should be removed from the "ensure installed", so that it doesn't try to install it by default on LazyVim installations.
This commit is contained in:
Miguel R. Araújo (Leug) 2025-12-15 16:09:17 -03:00 committed by GitHub
parent c64a61734f
commit e0905e5416
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,6 @@ return {
"javascript", "javascript",
"jsdoc", "jsdoc",
"json", "json",
"jsonc",
"lua", "lua",
"luadoc", "luadoc",
"luap", "luap",