From de3c53c461f0b5ed2b3fe72540e249a78a1b1231 Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Fri, 6 Dec 2024 22:52:22 +0100 Subject: [PATCH] Add a plugin to show in which scope the cursor is --- lua/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index d76efd1..6bb632f 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -588,6 +588,12 @@ local plugins = { } end + }, + { + 'nvim-treesitter/nvim-treesitter-context', + config = function() + require 'treesitter-context'.setup {} + end } }