11 lines
231 B
Lua
11 lines
231 B
Lua
local dap = require('dap')
|
|
|
|
dap.adapters.codelldb = {
|
|
type = 'server',
|
|
port = "${port}",
|
|
executable = {
|
|
command = vim.fn.stdpath('data') .. '/mason/bin/codelldb',
|
|
args = { "--port", "${port}" },
|
|
}
|
|
}
|