From 3200803c2d8ec0cb2d7ff709633bf757a9ed379c Mon Sep 17 00:00:00 2001 From: Marcus Date: Thu, 29 Jan 2026 09:42:52 +0800 Subject: [PATCH] Remove treesitter-context underline --- lua/custom/plugins/treesitter-context.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/custom/plugins/treesitter-context.lua b/lua/custom/plugins/treesitter-context.lua index 39d4e986..66fa2c87 100644 --- a/lua/custom/plugins/treesitter-context.lua +++ b/lua/custom/plugins/treesitter-context.lua @@ -1,3 +1,6 @@ return { 'nvim-treesitter/nvim-treesitter-context', + config = function() + vim.api.nvim_set_hl(0, 'TreesitterContextBottom', { underline = false }) + end, }