diff options
| author | Austin Liu <85013922+austinliuigi@users.noreply.github.com> | 2022-11-11 12:58:52 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-11 17:58:52 -0300 |
| commit | 99e480720f81baa0ad1dddf0cf33fd096fcee176 (patch) | |
| tree | 46e7a898aa9585ce9dc9fbed4adfa022c2c09670 | |
| parent | d659822c68be38f10725185980dec81520f5e3c7 (diff) | |
| download | gruvbox-99e480720f81baa0ad1dddf0cf33fd096fcee176.tar.gz gruvbox-99e480720f81baa0ad1dddf0cf33fd096fcee176.tar.xz | |
fix: transparency of signcolumn (#176)
| -rw-r--r-- | lua/gruvbox/groups.lua | 4 |
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 }, |
