diff options
| author | ache <ache@ache.one> | 2026-03-30 23:42:24 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-03-30 23:42:24 +0200 |
| commit | fcd3cf33ed9b254c3c145f89b386e8bd0ad65d5e (patch) | |
| tree | 67e3ff9b1f48354b10e3930ae523c8bd2cfdcfe5 /lua/ache/plugins/dap/gdb.lua | |
| parent | fix: Migrate to surround v4 (diff) | |
Add debbugging tools plugins
Diffstat (limited to 'lua/ache/plugins/dap/gdb.lua')
| -rw-r--r-- | lua/ache/plugins/dap/gdb.lua | 13 |
1 files changed, 13 insertions, 0 deletions
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, +} |