diff options
| author | Lucas Tavares <tavares.lassuncao@gmail.com> | 2023-03-12 12:58:32 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-12 12:58:32 -0300 |
| commit | 6489fc48890e9228527ec7c52293bb2c34136da8 (patch) | |
| tree | 4d0f4f1cd106eb1f710aa9992b7e94805cc7af2d | |
| parent | 331507561a46d6ce484f576299e0297e277bac7f (diff) | |
| download | gruvbox-6489fc48890e9228527ec7c52293bb2c34136da8.tar.gz gruvbox-6489fc48890e9228527ec7c52293bb2c34136da8.tar.xz | |
feat: Transparent FoldColumn (#218)
| -rw-r--r-- | lua/gruvbox/groups.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua index 97cd782..d06034e 100644 --- a/lua/gruvbox/groups.lua +++ b/lua/gruvbox/groups.lua @@ -110,7 +110,7 @@ M.setup = function() LineNr = { fg = colors.bg4 }, 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 }, + FoldColumn = config.transparent_mode and { fg = colors.gray, bg = nil } or { fg = colors.gray, bg = colors.bg1 }, Cursor = { reverse = config.inverse }, vCursor = { link = "Cursor" }, iCursor = { link = "Cursor" }, |
