Setup debug adapters for codelldb, debugpy and gopls. Also remove

nvim-dap-profiles :( Apparently there is a way to do the same thing
using launch.json built into dap, much better than my solution.
This commit is contained in:
Martin Larsson 2025-01-11 19:08:40 +01:00
parent b7796e9a5e
commit 472208ea95
8 changed files with 95 additions and 7 deletions

View file

@ -0,0 +1,8 @@
return {
type = "server",
port = "${port}",
executable = {
command = vim.fn.exepath("codelldb"), -- Update with your codelldb binary path
args = { "--port", "${port}" },
},
}