From 9c4ef569052b3f2e8b4fc6b385683b25bcc26751 Mon Sep 17 00:00:00 2001
From: Marty Oehme <contact@martyoeh.me>
Date: Fri, 14 Mar 2025 21:15:21 +0100
Subject: [PATCH] nvim: Update treesitter context plugin source

Seems to have since been transferred to nvim-treesitter group ownership.
Probably still worked under the old link, but better to be safe and use
the up-to-date source.

Have gotten LSP, Linters, Treesittesr into one list under core/languages

Missing formatters still, then it's done.
---
 nvim/.config/nvim/lua/plugins/treesitter.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nvim/.config/nvim/lua/plugins/treesitter.lua b/nvim/.config/nvim/lua/plugins/treesitter.lua
index f155814..ca85b6a 100644
--- a/nvim/.config/nvim/lua/plugins/treesitter.lua
+++ b/nvim/.config/nvim/lua/plugins/treesitter.lua
@@ -5,7 +5,7 @@ return {
 		-- show current cursor context at top of buffer
 		-- improves commenting plugin above by using ts
 		dependencies = {
-			{ "romgrk/nvim-treesitter-context", config = true },
+			"nvim-treesitter/nvim-treesitter-context",
 			"JoosepAlviste/nvim-ts-context-commentstring",
 			"RRethy/nvim-treesitter-textsubjects",
 			"windwp/nvim-ts-autotag",