From 450750835a01f64377434d6be0c7869ca59b7574 Mon Sep 17 00:00:00 2001 From: Squibid Date: Sun, 18 May 2025 13:03:31 -0500 Subject: need I say what type of commit this is? *kitchen sink* --- lua/conf/plugins/dap.lua | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'lua/conf/plugins/dap.lua') diff --git a/lua/conf/plugins/dap.lua b/lua/conf/plugins/dap.lua index 5abe1b3..4ec6706 100644 --- a/lua/conf/plugins/dap.lua +++ b/lua/conf/plugins/dap.lua @@ -57,7 +57,7 @@ return { "mfussenegger/nvim-dap", -- define codelldb dap.adapters.codelldb = { type = "executable", - command = "codelldb", + command = "codelldb" } -- define the c configuration for codelldb @@ -79,17 +79,19 @@ return { "mfussenegger/nvim-dap", dap.configurations.rust = dap.configurations.c -- keybinds - map("n", "ec", dap.continue, { desc = "dap continue " }) - map("n", "el", dap.run_last, { desc = "dap run last" }) - map("n", "et", function() + map("n", "ec", dap.continue, { desc = "dap continue " }) + map("n", "el", dap.run_last, { desc = "dap run last" }) + map("n", "et", function() dap.terminate() unset_hover_bind() end, { desc = "dap terminate " }) - map("n", "eb", require("dap.breakpoints").toggle, { desc = "dap toggle breakpoint" }) - map("n", "e]", dap.step_over, { desc = "dap step over" }) - map("n", "e[", dap.step_back, { desc = "dap step back" }) - map("n", "er", dap.repl.toggle, { desc = "dap repl toggle" }) - map("n", "eR", dap.restart, { desc = "dap restart" }) + map("n", "eb", require("dap.breakpoints").toggle, { + desc = "dap toggle breakpoint" + }) + map("n", "e]", dap.step_over, { desc = "dap step over" }) + map("n", "e[", dap.step_back, { desc = "dap step back" }) + map("n", "er", dap.repl.toggle, { desc = "dap repl toggle" }) + map("n", "eR", dap.restart, { desc = "dap restart" }) -- events dap.listeners.after['event_initialized']['me'] = set_hover_bind -- cgit v1.2.1