mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-16 11:58:40 +00:00
18 lines
363 B
Lua
18 lines
363 B
Lua
local dap = require("dap")
|
|
dap.adapters.coreclr = {
|
|
type = "executable",
|
|
command = "netcoredbg",
|
|
args = { "--interpreter=vscode" },
|
|
}
|
|
|
|
dap.configurations.fsharp = {
|
|
{
|
|
type = "coreclr",
|
|
name = "launch - netcoredbg",
|
|
request = "launch",
|
|
program = function()
|
|
return vim.fn.input("Path to dll: ", vim.fn.getcwd() .. "/bin/Debug/", "file")
|
|
end,
|
|
},
|
|
}
|