diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-15 16:19:14 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-15 16:19:14 +0900 |
| commit | 156a94acabea8350245092bd3fd5dbe6aea0415e (patch) | |
| tree | 1990ca161bbf2b9fda637124c7a744044b26c9d6 | |
| parent | d0b4341cb2fc521c76175532e80fec048f7b9b83 (diff) | |
modified plugins/dap.lua
| -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() |
