diff options
Diffstat (limited to 'ar')
| -rw-r--r-- | ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/dap.lua | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/dap.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/dap.lua index d1ef5d7..dba785b 100644 --- a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/dap.lua +++ b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/dap.lua @@ -228,7 +228,22 @@ return { config = function() local dap = require("dap") local dapui = require("dapui") - dapui.setup() + dapui.setup({ + icons = { expanded = "▾", collapsed = "▸", current_frame = "*" }, + controls = { + icons = { + pause = "⏸", + play = "▶", + step_into = "⏎", + step_over = "⏭", + step_out = "⏮", + step_back = "b", + run_last = "▶▶", + terminate = "⏹", + disconnect = "⏏", + }, + }, + }) dap.listeners.before.attach.dapui_config = function() dapui.open() |
