summaryrefslogtreecommitdiff
path: root/lua/lvim/core/dap.lua
diff options
context:
space:
mode:
authorPhilippe Richard <[email protected]>2022-10-02 23:48:23 -0400
committerGitHub <[email protected]>2022-10-02 23:48:23 -0400
commit8767a17b5e6087153494a5cd30e5ae0c5165c9af (patch)
tree40f57839009330a85471662acf12f87f6e46017d /lua/lvim/core/dap.lua
parent228658b02e083d0294b737b39275f3b62c007b94 (diff)
feat: move icons to a single icons file (#3115)
Diffstat (limited to 'lua/lvim/core/dap.lua')
-rw-r--r--lua/lvim/core/dap.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lvim/core/dap.lua b/lua/lvim/core/dap.lua
index 727e238f..9e629cda 100644
--- a/lua/lvim/core/dap.lua
+++ b/lua/lvim/core/dap.lua
@@ -5,19 +5,19 @@ M.config = function()
active = false,
on_config_done = nil,
breakpoint = {
- text = "",
+ text = lvim.icons.ui.Bug,
texthl = "LspDiagnosticsSignError",
linehl = "",
numhl = "",
},
breakpoint_rejected = {
- text = "",
+ text = lvim.icons.ui.Bug,
texthl = "LspDiagnosticsSignHint",
linehl = "",
numhl = "",
},
stopped = {
- text = "",
+ text = lvim.icons.ui.BoldArrowRight,
texthl = "LspDiagnosticsSignInformation",
linehl = "DiagnosticUnderlineInfo",
numhl = "LspDiagnosticsSignInformation",