aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/gruvbox/groups.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua
index 6bc3130..6555dd5 100644
--- a/lua/gruvbox/groups.lua
+++ b/lua/gruvbox/groups.lua
@@ -143,7 +143,7 @@ groups.setup = function()
GruvboxPurpleUnderline = { undercurl = config.undercurl, sp = colors.purple },
GruvboxAquaUnderline = { undercurl = config.undercurl, sp = colors.aqua },
GruvboxOrangeUnderline = { undercurl = config.undercurl, sp = colors.orange },
- Normal = config.transparent_mode and { fg = nil, bg = nil } or { fg = colors.fg1, bg = colors.bg0 },
+ Normal = config.transparent_mode and { fg = colors.fg1, bg = nil } or { fg = colors.fg1, bg = colors.bg0 },
NormalNC = config.dim_inactive and { fg = colors.fg0, bg = colors.bg1 } or { link = "Normal" },
CursorLine = { bg = colors.bg1 },
CursorColumn = { link = "CursorLine" },
@@ -176,7 +176,7 @@ groups.setup = function()
Question = { link = "GruvboxOrangeBold" },
WarningMsg = { link = "GruvboxRedBold" },
LineNr = { fg = colors.bg4 },
- SignColumn = { bg = colors.bg1 },
+ SignColumn = config.transparent_mode and { bg = nil } or { bg = colors.bg1 },
Folded = { fg = colors.gray, bg = colors.bg1, italic = config.italic },
FoldColumn = { fg = colors.gray, bg = colors.bg1 },
Cursor = { reverse = config.inverse },