From 7a13c688d7e89dbdd27e2598987e8dc4612f72ea Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Mon, 26 May 2025 02:55:25 +0200 Subject: [PATCH] Remove treesitter context --- nvim/dot-config/nvim/lazy-lock.json | 1 - nvim/dot-config/nvim/lua/plugins/treesitter.lua | 9 --------- 2 files changed, 10 deletions(-) diff --git a/nvim/dot-config/nvim/lazy-lock.json b/nvim/dot-config/nvim/lazy-lock.json index 9b3338d..92a8671 100644 --- a/nvim/dot-config/nvim/lazy-lock.json +++ b/nvim/dot-config/nvim/lazy-lock.json @@ -36,7 +36,6 @@ "nvim-lspconfig": { "branch": "master", "commit": "3ea99227e316c5028f57a4d86a1a7fd01dd876d0" }, "nvim-surround": { "branch": "main", "commit": "0e62500b98f4513feaaf7425c135472457ea5b7d" }, "nvim-treesitter": { "branch": "main", "commit": "c1dfc39285e4a11983dfbe556fb0be7f2a749977" }, - "nvim-treesitter-context": { "branch": "master", "commit": "404502e607c3b309e405be9112c438c721153372" }, "nvim-treesitter-textobjects": { "branch": "main", "commit": "fa32a45fdbab9c9c3bda9ecec9b12dddb221b927" }, "nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" }, "peek.nvim": { "branch": "master", "commit": "5820d937d5414baea5f586dc2a3d912a74636e5b" }, diff --git a/nvim/dot-config/nvim/lua/plugins/treesitter.lua b/nvim/dot-config/nvim/lua/plugins/treesitter.lua index dd68e1f..903b8f5 100644 --- a/nvim/dot-config/nvim/lua/plugins/treesitter.lua +++ b/nvim/dot-config/nvim/lua/plugins/treesitter.lua @@ -3,7 +3,6 @@ return { -- Highlight, edit, and navigate code "nvim-treesitter/nvim-treesitter", dependencies = { - "nvim-treesitter/nvim-treesitter-context", { "nvim-treesitter/nvim-treesitter-textobjects", branch = "main" }, "windwp/nvim-ts-autotag", }, @@ -80,12 +79,4 @@ return { }, }, }, - { - "nvim-treesitter/nvim-treesitter-context", - opts = { - multiwindow = true, - mode = "topline", - separator = require("symbols.window").borderchars[3], - }, - }, }