Skip to content

Commit

Permalink
added nvim-dap-ui highlight groups (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
mezdelex committed Aug 29, 2023
1 parent 6d409ee commit a40c570
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions lua/gruvbox/groups.lua
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,6 @@ M.setup = function()
LspSagaDiagnosticHeader = { link = "GruvboxGreen" },
LspSagaSignatureHelpBorder = { link = "GruvboxGreen" },
SagaShadow = { link = "GruvboxBg0" },

-- dashboard-nvim
DashboardShortCut = { link = "GruvboxOrange" },
DashboardHeader = { link = "GruvboxAqua" },
Expand Down Expand Up @@ -978,7 +977,6 @@ M.setup = function()
IlluminatedWordText = { link = "LspReferenceText" },
IlluminatedWordRead = { link = "LspReferenceRead" },
IlluminatedWordWrite = { link = "LspReferenceWrite" },

-- ts-rainbow2 (maintained fork)
TSRainbowRed = { fg = colors.red },
TSRainbowOrange = { fg = colors.orange },
Expand All @@ -987,6 +985,37 @@ M.setup = function()
TSRainbowBlue = { fg = colors.blue },
TSRainbowViolet = { fg = colors.purple },
TSRainbowCyan = { fg = colors.cyan },
-- nvim-dap-ui
DapBreakpointSymbol = { fg = colors.red, bg = colors.bg1 },
DapStoppedSymbol = { fg = colors.green, bg = colors.bg1 },
DapUIBreakpointsCurrentLine = { link = 'GruvboxYellow' },
DapUIBreakpointsDisabledLine = { link = 'GruvboxGray' },
DapUIBreakpointsInfo = { link = 'GruvboxAqua' },
DapUIBreakpointsLine = { link = 'GruvboxYellow' },
DapUIBreakpointsPath = { link = 'GruvboxBlue' },
DapUICurrentFrameName = { link = 'GruvboxPurple' },
DapUIDecoration = { link = 'GruvboxPurple' },
DapUIEndofBuffer = { link = 'GruvboxBg2' },
DapUIFloatBorder = { link = 'GruvboxAqua' },
DapUILineNumber = { link = 'GruvboxYellow' },
DapUIModifiedValue = { link = 'GruvboxRed' },
DapUIPlayPause = { link = 'GruvboxGreen' },
DapUIRestart = { link = 'GruvboxGreen' },
DapUIScope = { link = 'GruvboxBlue' },
DapUISource = { link = 'GruvboxFg1' },
DapUIStepBack = { link = 'GruvboxBlue' },
DapUIStepInto = { link = 'GruvboxBlue' },
DapUIStepOut = { link = 'GruvboxBlue' },
DapUIStepOver = { link = 'GruvboxBlue' },
DapUIStop = { link = 'GruvboxRed' },
DapUIStoppedThread = { link = 'GruvboxBlue' },
DapUIThread = { link = 'GruvboxBlue' },
DapUIType = { link = 'GruvboxOrange' },
DapUIUnavailable = { link = 'GruvboxGray' },
DapUIWatchesEmpty = { link = 'GruvboxGray' },
DapUIWatchesError = { link = 'GruvboxRed' },
DapUIWatchesValue = { link = 'GruvboxYellow' },
DapUIWinSelect = { link = 'GruvboxYellow' }
}

for group, hl in pairs(config.overrides) do
Expand Down

0 comments on commit a40c570

Please sign in to comment.