forked from Shinonome/fred-neovim
13 lines
233 B
Nix
13 lines
233 B
Nix
{ pkgs, ... }: {
|
|
extraConfigLua = ''
|
|
local dap = require('dap')
|
|
|
|
dap.adapters.coreclr = {
|
|
type = 'executable',
|
|
command = '${pkgs.netcoredbg}/bin/netcoredbg',
|
|
args = {'--interpreter=vscode'}
|
|
}
|
|
|
|
'';
|
|
}
|