From 70835846286003531a606403d07162930e7fea16 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 6 May 2026 23:53:40 +0200 Subject: [PATCH] fix(nvim-tree): add back indent marker hl override --- plugins/onedark.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/onedark.lua b/plugins/onedark.lua index a2321ce..fb2830a 100644 --- a/plugins/onedark.lua +++ b/plugins/onedark.lua @@ -48,6 +48,7 @@ local highlights = { DiffChange = { bg = "#15304a" }, DiffDelete = { bg = "#311c1e" }, Changed = { fg = c.yellow }, + NvimTreeIndentMarker = { fg = c.bg3 }, } for kind, color in pairs(completion_kind_colors) do highlights["LspKind" .. kind] = { fg = color }