diff options
Diffstat (limited to 'lua/plugins')
| -rw-r--r-- | lua/plugins/dap.lua | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lua/plugins/dap.lua b/lua/plugins/dap.lua index 52b8714..2a967f0 100644 --- a/lua/plugins/dap.lua +++ b/lua/plugins/dap.lua @@ -284,7 +284,7 @@ dapui.setup({ toggle = "t", }, controls = { - enabled = false, + enabled = true, }, layouts = { { @@ -298,6 +298,13 @@ dapui.setup({ size = 50, -- 40 columns position = "left", }, + --{ + -- elements = { + -- "repl", + -- }, + -- size = 50, + -- position = "center", + --}, { elements = { "console", @@ -329,7 +336,7 @@ dapui.setup({ -- signs local sign = vim.fn.sign_define sign("DapBreakpoint", { text = "●", texthl = "DapBreakpoint", linehl = "", numhl = "" }) -sign("DapBreakpointCondition", { text = "◆", texthl = "DapBreakpointCondition", linehl = "", numhl = "" }) +sign("DapBreakpointCondition", { text = "◆", texthl = "DapBreakpointCondition", linehl = "", numhl = "" }) -- sign("DapBreakpointRejected", { text = 'R', texthl = 'DiagnosticError', numhl = 'DiagnosticError' }) sign("DapLogPoint", { text = "L", texthl = "DapLogPoint", linehl = "", numhl = "" }) sign('DapStopped', { text = '', texthl = 'DiagnosticSignHint', numbhl = '', linehl = '' }) |
