aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/gruvbox/groups.lua21
1 files changed, 14 insertions, 7 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua
index 500df09..fd4c760 100644
--- a/lua/gruvbox/groups.lua
+++ b/lua/gruvbox/groups.lua
@@ -129,13 +129,20 @@ groups.setup = function()
GruvboxAquaBold = { fg = colors.aqua, bold = config.bold },
GruvboxOrange = { fg = colors.orange },
GruvboxOrangeBold = { fg = colors.orange, bold = config.bold },
- GruvboxRedSign = config.transparent_mode and {fg = colors.red, reverse = config.invert_signs} or { fg = colors.red, bg = colors.bg1, reverse = config.invert_signs },
- GruvboxGreenSign = config.transparent_mode and {fg = colors.green, reverse = config.invert_signs} or { fg = colors.green, bg = colors.bg1, reverse = config.invert_signs },
- GruvboxYellowSign = config.transparent_mode and {fg = colors.yellow, reverse = config.invert_signs} or { fg = colors.yellow, bg = colors.bg1, reverse = config.invert_signs },
- GruvboxBlueSign = config.transparent_mode and {fg = colors.blue, reverse = config.invert_signs} or { fg = colors.blue, bg = colors.bg1, reverse = config.invert_signs },
- GruvboxPurpleSign = config.transparent_mode and {fg = colors.purple, reverse = config.invert_signs} or { fg = colors.purple, bg = colors.bg1, reverse = config.invert_signs },
- GruvboxAquaSign = config.transparent_mode and {fg = colors.aqua, reverse = config.invert_signs} or { fg = colors.aqua, bg = colors.bg1, reverse = config.invert_signs },
- GruvboxOrangeSign = config.transparent_mode and {fg = colors.orange, reverse = config.invert_signs} or { fg = colors.orange, bg = colors.bg1, reverse = config.invert_signs },
+ GruvboxRedSign = config.transparent_mode and { fg = colors.red, reverse = config.invert_signs }
+ or { fg = colors.red, bg = colors.bg1, reverse = config.invert_signs },
+ GruvboxGreenSign = config.transparent_mode and { fg = colors.green, reverse = config.invert_signs }
+ or { fg = colors.green, bg = colors.bg1, reverse = config.invert_signs },
+ GruvboxYellowSign = config.transparent_mode and { fg = colors.yellow, reverse = config.invert_signs }
+ or { fg = colors.yellow, bg = colors.bg1, reverse = config.invert_signs },
+ GruvboxBlueSign = config.transparent_mode and { fg = colors.blue, reverse = config.invert_signs }
+ or { fg = colors.blue, bg = colors.bg1, reverse = config.invert_signs },
+ GruvboxPurpleSign = config.transparent_mode and { fg = colors.purple, reverse = config.invert_signs }
+ or { fg = colors.purple, bg = colors.bg1, reverse = config.invert_signs },
+ GruvboxAquaSign = config.transparent_mode and { fg = colors.aqua, reverse = config.invert_signs }
+ or { fg = colors.aqua, bg = colors.bg1, reverse = config.invert_signs },
+ GruvboxOrangeSign = config.transparent_mode and { fg = colors.orange, reverse = config.invert_signs }
+ or { fg = colors.orange, bg = colors.bg1, reverse = config.invert_signs },
GruvboxRedUnderline = { undercurl = config.undercurl, sp = colors.red },
GruvboxGreenUnderline = { undercurl = config.undercurl, sp = colors.green },
GruvboxYellowUnderline = { undercurl = config.undercurl, sp = colors.yellow },