aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMezdelex <59997405+mezdelex@users.noreply.github.com>2023-08-29 04:02:28 +0200
committerGitHub <noreply@github.com>2023-08-28 23:02:28 -0300
commita40c5704f155b2f05964df5ac951da03854d81af (patch)
tree8e4690aec0760288e246a711c50c45aafba2d95a
parent6d409ee8af4e84d2327b4b5856f843b97a85a567 (diff)
downloadgruvbox-a40c5704f155b2f05964df5ac951da03854d81af.tar.gz
gruvbox-a40c5704f155b2f05964df5ac951da03854d81af.tar.xz
added nvim-dap-ui highlight groups (#265)
-rw-r--r--lua/gruvbox/groups.lua33
1 files changed, 31 insertions, 2 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua
index decffa1..a60645f 100644
--- a/lua/gruvbox/groups.lua
+++ b/lua/gruvbox/groups.lua
@@ -928,7 +928,6 @@ M.setup = function()
LspSagaDiagnosticHeader = { link = "GruvboxGreen" },
LspSagaSignatureHelpBorder = { link = "GruvboxGreen" },
SagaShadow = { link = "GruvboxBg0" },
-
-- dashboard-nvim
DashboardShortCut = { link = "GruvboxOrange" },
DashboardHeader = { link = "GruvboxAqua" },
@@ -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 },
@@ -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