Skip to content

Commit

Permalink
Add highlights for nvim-dap-ui controls
Browse files Browse the repository at this point in the history
  • Loading branch information
neanias committed Dec 3, 2024
1 parent 4f41a53 commit 3f44039
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lua/everforest/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1326,6 +1326,14 @@ highlights.generate_syntax = function(palette, options)
-- rcarriga/nvim-dap-ui
DapUIModifiedValue = syntax_entry(palette.blue, palette.none, { styles.bold }),
DapUIBreakpointsCurrentLine = syntax_entry(palette.blue, palette.none, { styles.bold }),
DapUIPlayPause = syntax_entry(palette.green, palette.bg2),
DapUIRestart = syntax_entry(palette.green, palette.bg2),
DapUIStop = syntax_entry(palette.red, palette.bg2),
DapUIUnavailable = syntax_entry(palette.grey1, palette.bg2),
DapUIStepOver = syntax_entry(palette.blue, palette.bg2),
DapUIStepInto = syntax_entry(palette.blue, palette.bg2),
DapUIStepBack = syntax_entry(palette.blue, palette.bg2),
DapUIStepOut = syntax_entry(palette.blue, palette.bg2),
DapUIScope = { link = "Blue" },
DapUIType = { link = "Purple" },
DapUIDecoration = { link = "Blue" },
Expand Down

0 comments on commit 3f44039

Please sign in to comment.