9 lines
350 B
Lua
9 lines
350 B
Lua
local dap = require('dap')
|
|
dap.adapters.node2 = {
|
|
type = 'executable',
|
|
command = 'node',
|
|
args = {os.getenv('HOME') .. '/dev/microsoft/vscode-node-debug2/out/src/nodeDebug.js'},
|
|
}
|
|
vim.fn.sign_define('DapBreakpoint', {text='🟥', texthl='', linehl='', numhl=''})
|
|
vim.fn.sign_define('DapStopped', {text='⭐️', texthl='', linehl='', numhl=''})
|