47 lines
1.2 KiB
Lua
47 lines
1.2 KiB
Lua
return {
|
|||
|
|
"mfussenegger/nvim-dap",
|
||
|
|
dependencies = {
|
||
|
|
"rcarriga/nvim-dap-ui",
|
||
|
|
"nvim-neotest/nvim-nio",
|
||
|
|
},
|
||
|
|
config = function()
|
||
|
|
local dap = require("dap")
|
||
|
|
local dapui = require("dapui")
|
||
|
|
|
||
|
|
dapui.setup()
|
||
|
|
|
||
|
|
dap.adapters.coreclr = {
|
||
|
|
type = 'executable',
|
||
|
|
command = 'C:/Users/sfree/AppData/Local/nvim-data/mason/packages/netcoredbg/netcoredbg/netcoredbg.exe',
|
||
|
|
args = {'--interpreter=vscode'}
|
||
|
|
}
|
||
|
|
|
||
|
|
dap.configurations.cs = {
|
||
|
|
{
|
||
|
|
type = "coreclr",
|
||
|
|
name = "launch - netcoredbg",
|
||
|
|
request = "launch",
|
||
|
|
program = function()
|
||
|
|
return vim.fn.input('Path to dll', vim.fn.getcwd() .. '/bin/Debug/', 'file')
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
dap.listeners.before.attach.dapui_config = function()
|
||
|
|
dapui.open()
|
||
|
|
end
|
||
|
|
dap.listeners.before.launch.dapui_config = function()
|
||
|
|
dapui.open()
|
||
|
|
end
|
||
|
|
dap.listeners.before.event_terminated.dapui_config = function()
|
||
|
|
dapui.close()
|
||
|
|
end
|
||
|
|
dap.listeners.before.event_exited.dapui_config = function()
|
||
|
|
dapui.close()
|
||
|
|
end
|
||
|
|
|
||
|
|
vim.keymap.set("n", "<Leader>dt", dap.toggle_breakpoint, {})
|
||
|
|
vim.keymap.set("n", "<Leader>dc", dap.continue, {})
|
||
|
|
end,
|
||
|
|
}
|