Renamed dap

This commit is contained in:
Fred Drake
2024-10-02 18:51:17 -04:00
parent 10acaf2001
commit 5ef7a65959
3 changed files with 0 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }: {
extraConfigLua = ''
local dap = require('dap')
dap.adapters.coreclr = {
type = 'executable',
command = '${pkgs.netcoredbg}/bin/netcoredbg',
args = {'--interpreter=vscode'}
}
'';
}