.dotfiles/home/.config/nvim/lua/dap/adapters/codelldb.lua
Martin Larsson 472208ea95 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.
2025-01-11 19:08:40 +01:00

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}" },
},
}