summaryrefslogtreecommitdiff
path: root/lua/plugins/dap-ui.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/dap-ui.lua')
-rw-r--r--lua/plugins/dap-ui.lua58
1 files changed, 2 insertions, 56 deletions
diff --git a/lua/plugins/dap-ui.lua b/lua/plugins/dap-ui.lua
index 6df72c5..3858c18 100644
--- a/lua/plugins/dap-ui.lua
+++ b/lua/plugins/dap-ui.lua
@@ -1,59 +1,5 @@
return {
"rcarriga/nvim-dap-ui",
- dependencies = {
- "nvim-neotest/nvim-nio",
- },
- keys = {
- {
- "<leader>du",
- function()
- require("dapui").toggle({ layout = 1 })
- end,
- desc = "Dap UI",
- },
- },
- opts = {
- layouts = {
- -- Run layout
- {
- elements = {
- { id = "repl", size = 0.20 },
- { id = "console", size = 0.80 },
- },
- size = 30,
- position = "bottom",
- },
- -- Debug layout
- {
- elements = {
- { id = "scopes", size = 0.20 },
- { id = "stacks", size = 0.20 },
- { id = "console", size = 0.60 },
- },
- size = 30,
- position = "bottom",
- },
- },
- },
- config = function(_, opts)
- require("dapui").setup(opts)
-
- local listener = require("dap").listeners
- listener.after.event_initialized["dapui_config"] = function()
- require("dapui").close()
- require("dapui").toggle({ layout = 1 })
- end
- listener.after.event_continued["dapui_config"] = function()
- require("dapui").close()
- require("dapui").toggle({ layout = 1 })
- end
- listener.after.event_breakpoint["dapui_config"] = function()
- require("dapui").close()
- require("dapui").toggle({ layout = 2 })
- end
- listener.after.event_terminated["dapui_config"] = function()
- require("dapui").close()
- require("dapui").toggle({ layout = 1 })
- end
- end,
+ -- Disable nvim-dap-ui in favor of nvim-dap-view
+ enabled = false,
}