From 92607e79e09a2761d930877a09edc00438b97fc3 Mon Sep 17 00:00:00 2001 From: Iordanis Petkakis <12776461+dpetka2001@users.noreply.github.com> Date: Sun, 1 Mar 2026 11:08:09 +0200 Subject: [PATCH] fix(treesitter): remove deleted jsonc parser (#6848) ## Description https://github.com/nvim-treesitter/nvim-treesitter/commit/d2350758b39dce3593ffa8b058f863ea4cfa5b0e removed parsers not hosted on Github, `jsonc` among them. Remove it from LazyVim as well. On a fresh new installation, there's no problem and it doesn't even install, but on existing installation you get an error when updating about parser not available. 2025-12-07_11-24 ## Related Issue(s) None ## Screenshots ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. --- lua/lazyvim/plugins/treesitter.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/lazyvim/plugins/treesitter.lua b/lua/lazyvim/plugins/treesitter.lua index 4497ff1c..eb3ebf61 100644 --- a/lua/lazyvim/plugins/treesitter.lua +++ b/lua/lazyvim/plugins/treesitter.lua @@ -37,7 +37,6 @@ return { "javascript", "jsdoc", "json", - "jsonc", "lua", "luadoc", "luap",