From a40c5704f155b2f05964df5ac951da03854d81af Mon Sep 17 00:00:00 2001 From: Mezdelex <59997405+mezdelex@users.noreply.github.com> Date: Tue, 29 Aug 2023 04:02:28 +0200 Subject: added nvim-dap-ui highlight groups (#265) --- lua/gruvbox/groups.lua | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) (limited to 'lua') 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 -- cgit v1.2.3