Skip to content

Commit

Permalink
feat(dap-ui): add control hl group (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
emxxjnm committed Feb 1, 2023
1 parent 491f0a5 commit 8769e76
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lua/catppuccin/groups/integrations/dap.lua
Expand Up @@ -6,6 +6,7 @@ function M.get()
DapBreakpoint = { fg = C.red },
DapBreakpointCondition = { fg = C.yellow },
DapLogPoint = { fg = C.sky },
DapStopped = { fg = C.maroon },

-- nvim-dap-ui
DAPUIScope = { fg = C.sky },
Expand All @@ -28,6 +29,15 @@ function M.get()
DapUIBreakpointsInfo = { fg = C.green },
DapUIBreakpointsCurrentLine = { fg = C.green, style = { "bold" } },
DapUIBreakpointsDisabledLine = { fg = C.gray0 },

DapUIStepOver = { fg = C.blue },
DapUIStepInto = { fg = C.blue },
DapUIStepBack = { fg = C.blue },
DapUIStepOut = { fg = C.blue },
DapUIStop = { fg = C.red },
DapUIPlayPause = { fg = C.green },
DapUIRestart = { fg = C.green },
DapUIUnavailable = { fg = C.surface1 },
}
end

Expand Down

0 comments on commit 8769e76

Please sign in to comment.