From 7e3b0744ef94aba757172e2d91c6cd37c7086deb Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Sat, 3 May 2025 00:25:13 +0200 Subject: [PATCH] fix(onedark): change treesitter-context highlights --- lua/ow/plugins/onedark.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/ow/plugins/onedark.lua b/lua/ow/plugins/onedark.lua index 8943a18..7f02dd1 100644 --- a/lua/ow/plugins/onedark.lua +++ b/lua/ow/plugins/onedark.lua @@ -16,6 +16,11 @@ return { TelescopePromptBorder = { fg = c.grey }, TelescopeResultsBorder = { fg = c.grey }, TelescopePreviewBorder = { fg = c.grey }, + TreesitterContext = { bg = c.bg1 }, + TreesitterContextLineNumber = { bg = c.bg1 }, + TreesitterContextSeparator = { bg = c.bg1 }, + TreesitterContextBottom = { fmt = "underline", sp=c.grey }, + TreesitterContextLineNumberBottom = { fmt = "underline", sp=c.grey }, } require("onedark").set_options("highlights", highlights)