From 12be1852964b4d228820231b860679b213672a7b Mon Sep 17 00:00:00 2001 From: siduck Date: Fri, 31 Mar 2023 14:32:47 +0530 Subject: [PATCH] add green color to operators in gruvbox theme, fix (#160) --- lua/base46/themes/gruvbox.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lua/base46/themes/gruvbox.lua b/lua/base46/themes/gruvbox.lua index cb0cec8..098e79b 100644 --- a/lua/base46/themes/gruvbox.lua +++ b/lua/base46/themes/gruvbox.lua @@ -59,4 +59,14 @@ M.type = "dark" M = require("base46").override_theme(M, "gruvbox") +M.polish_hl = { + Operator = { + fg = M.base_30.nord_blue, + }, + + ["@operator"] = { + fg = M.base_30.nord_blue, + }, +} + return M