diff options
| author | ChristianChiarulli <[email protected]> | 2022-10-05 03:25:51 -0400 | 
|---|---|---|
| committer | ChristianChiarulli <[email protected]> | 2022-10-05 03:25:51 -0400 | 
| commit | 42e410cdb086af1415b6e263eba9b250ef3d9ac2 (patch) | |
| tree | e320f47bf6b1c417111ffbfc28167ce3a123b359 /lua/lvim/core/dap.lua | |
| parent | e5bcf01c759e7c833d8a5f1fcf665b6ea32a7c16 (diff) | |
feat(dap): red bugs and other highlight improvements
Diffstat (limited to 'lua/lvim/core/dap.lua')
| -rw-r--r-- | lua/lvim/core/dap.lua | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/lua/lvim/core/dap.lua b/lua/lvim/core/dap.lua index fb603c81..77c2856a 100644 --- a/lua/lvim/core/dap.lua +++ b/lua/lvim/core/dap.lua @@ -6,21 +6,21 @@ M.config = function()      on_config_done = nil,      breakpoint = {        text = lvim.icons.ui.Bug, -      texthl = "LspDiagnosticsSignError", +      texthl = "DiagnosticSignError",        linehl = "",        numhl = "",      },      breakpoint_rejected = {        text = lvim.icons.ui.Bug, -      texthl = "LspDiagnosticsSignHint", +      texthl = "DiagnosticSignError",        linehl = "",        numhl = "",      },      stopped = {        text = lvim.icons.ui.BoldArrowRight, -      texthl = "LspDiagnosticsSignInformation", -      linehl = "DiagnosticUnderlineInfo", -      numhl = "LspDiagnosticsSignInformation", +      texthl = "DiagnosticSignWarn", +      linehl = "Visual", +      numhl = "DiagnosticSignWarn",      },      ui = {        auto_open = true, @@ -119,3 +119,4 @@ M.setup_ui = function()  end  return M + | 
