From fcd3cf33ed9b254c3c145f89b386e8bd0ad65d5e Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 30 Mar 2026 23:42:24 +0200 Subject: Add debbugging tools plugins --- lua/ache/plugins/dap/gdb.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/ache/plugins/dap/gdb.lua (limited to 'lua/ache/plugins/dap/gdb.lua') diff --git a/lua/ache/plugins/dap/gdb.lua b/lua/ache/plugins/dap/gdb.lua new file mode 100644 index 0000000..177313d --- /dev/null +++ b/lua/ache/plugins/dap/gdb.lua @@ -0,0 +1,13 @@ +--[ +-- Add basic gdb integration. +-- +-- NOTE: Should disable since dap is the best integration method +--] + +return { + "sakhnik/nvim-gdb", + enabled = false, + config = function() + require("nvimgdb").setup = function() end + end, +} -- cgit v1.3-2-g11bf