From 99e480720f81baa0ad1dddf0cf33fd096fcee176 Mon Sep 17 00:00:00 2001 From: Austin Liu <85013922+austinliuigi@users.noreply.github.com> Date: Fri, 11 Nov 2022 12:58:52 -0800 Subject: fix: transparency of signcolumn (#176) --- lua/gruvbox/groups.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua') 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 }, -- cgit v1.2.3