diff options
Diffstat (limited to 'lua/plugins/dap.lua')
| -rw-r--r-- | lua/plugins/dap.lua | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/lua/plugins/dap.lua b/lua/plugins/dap.lua index 982a525..f7fd41b 100644 --- a/lua/plugins/dap.lua +++ b/lua/plugins/dap.lua @@ -284,33 +284,36 @@ dapui.setup({ toggle = "t", }, controls = { + element = "repl", enabled = true, + --icons = { + -- disconnect = "", + -- pause = "", + -- play = "", + -- run_last = "", + -- step_back = "", + -- step_into = "", + -- step_out = "", + -- step_over = "", + -- terminate = "", + --}, }, layouts = { { elements = { -- Elements can be strings or table with id and size keys. --{ id = "scopes", size = 0.4 }, - "watches", - "scopes", - "breakpoints", - "stacks", + { id = "watches", size = 0.25 }, + { id = "scopes", size = 0.25 }, + { id = "breakpoints", size = 0.25 }, + { id = "stacks", size = 0.25 }, }, size = 50, -- 40 columns position = "left", }, - --{ - -- elements = { - -- "repl", - -- }, - -- size = 50, - -- position = "center", - --}, { elements = { - --"console", { id = "console", size = 0.6 }, - --"repl", { id = "repl", size = 0.4 }, }, size = 0.3, |
