Skip to content

Commit

Permalink
feat: treesitter-context hi group
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoulloao committed Jul 8, 2024
1 parent 4d3399f commit b112e62
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions lua/neofusion/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -163,19 +163,19 @@ local function get_groups()
NeofusionOrange = { fg = colors.orange },
NeofusionOrangeBold = { fg = colors.orange, bold = config.bold },
NeofusionRedSign = config.transparent_mode and { fg = colors.red, reverse = config.invert_signs }
or { fg = colors.red, bg = colors.bg0, reverse = config.invert_signs },
or { fg = colors.red, bg = colors.bg0, reverse = config.invert_signs },
NeofusionGreenSign = config.transparent_mode and { fg = colors.green, reverse = config.invert_signs }
or { fg = colors.green, bg = colors.bg0, reverse = config.invert_signs },
or { fg = colors.green, bg = colors.bg0, reverse = config.invert_signs },
NeofusionYellowSign = config.transparent_mode and { fg = colors.yellow, reverse = config.invert_signs }
or { fg = colors.yellow, bg = colors.bg0, reverse = config.invert_signs },
or { fg = colors.yellow, bg = colors.bg0, reverse = config.invert_signs },
NeofusionBlueSign = config.transparent_mode and { fg = colors.blue, reverse = config.invert_signs }
or { fg = colors.blue, bg = colors.bg0, reverse = config.invert_signs },
or { fg = colors.blue, bg = colors.bg0, reverse = config.invert_signs },
NeofusionPurpleSign = config.transparent_mode and { fg = colors.purple, reverse = config.invert_signs }
or { fg = colors.purple, bg = colors.bg0, reverse = config.invert_signs },
or { fg = colors.purple, bg = colors.bg0, reverse = config.invert_signs },
NeofusionAquaSign = config.transparent_mode and { fg = colors.aqua, reverse = config.invert_signs }
or { fg = colors.aqua, bg = colors.bg0, reverse = config.invert_signs },
or { fg = colors.aqua, bg = colors.bg0, reverse = config.invert_signs },
NeofusionOrangeSign = config.transparent_mode and { fg = colors.orange, reverse = config.invert_signs }
or { fg = colors.orange, bg = colors.bg0, reverse = config.invert_signs },
or { fg = colors.orange, bg = colors.bg0, reverse = config.invert_signs },
NeofusionRedUnderline = { undercurl = config.undercurl, sp = colors.red },
NeofusionGreenUnderline = { undercurl = config.undercurl, sp = colors.green },
NeofusionYellowUnderline = { undercurl = config.undercurl, sp = colors.yellow },
Expand Down Expand Up @@ -845,6 +845,7 @@ local function get_groups()
DapUIStepOut = { fg = colors.blue, bg = colors.bg1 },
DapUIStepOver = { fg = colors.blue, bg = colors.bg1 },
DapUIStop = { fg = colors.red, bg = colors.bg1 },
TreesitterContext = { bg = colors.bg1 },
DapUIStoppedThread = { link = "NeofusionBlue" },
DapUIThread = { link = "NeofusionBlue" },
DapUIType = { link = "NeofusionOrange" },
Expand Down

0 comments on commit b112e62

Please sign in to comment.