From dec5e0afb0567f934c3f438baf8223e85d68736a Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Sat, 3 May 2025 01:17:17 +0200 Subject: [PATCH] fix(onedark): update diff colors --- lua/ow/plugins/onedark.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/ow/plugins/onedark.lua b/lua/ow/plugins/onedark.lua index 7f02dd1..00134a4 100644 --- a/lua/ow/plugins/onedark.lua +++ b/lua/ow/plugins/onedark.lua @@ -21,6 +21,9 @@ return { TreesitterContextSeparator = { bg = c.bg1 }, TreesitterContextBottom = { fmt = "underline", sp=c.grey }, TreesitterContextLineNumberBottom = { fmt = "underline", sp=c.grey }, + DiffAdd = { bg = "#1e3a2a" }, + DiffChange = { bg = "#15304a" }, + DiffDelete = { bg = "#3d2224" }, } require("onedark").set_options("highlights", highlights)