nvim-dap-profiles :( Apparently there is a way to do the same thing using launch.json built into dap, much better than my solution.
8 lines
207 B
Lua
8 lines
207 B
Lua
return {
|
|
type = "server",
|
|
port = "${port}",
|
|
executable = {
|
|
command = vim.fn.exepath("codelldb"), -- Update with your codelldb binary path
|
|
args = { "--port", "${port}" },
|
|
},
|
|
}
|