diff options
| author | Ellison Leão <ellisonleao@gmail.com> | 2023-01-26 11:48:17 -0300 |
|---|---|---|
| committer | Ellison Leão <ellisonleao@gmail.com> | 2023-01-26 11:48:17 -0300 |
| commit | 2e93ac50b3e95d650e62729f8810a005861e77ad (patch) | |
| tree | 3de0245ebaf3559665d33e4f8a2e80ef9a95d96a /lua | |
| parent | fa97ddf4cc839e278dd1cbd086bb82e7175b8b39 (diff) | |
| download | gruvbox-2e93ac50b3e95d650e62729f8810a005861e77ad.tar.gz gruvbox-2e93ac50b3e95d650e62729f8810a005861e77ad.tar.xz | |
stylua
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/gruvbox/groups.lua | 21 |
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 }, |
