mirror of
https://github.com/fred-drake/neovim.git
synced 2026-06-05 14:59:28 -05:00
Improved debugging
This commit is contained in:
+11
-8
@@ -1,9 +1,12 @@
|
||||
{
|
||||
plugins.dap = {
|
||||
enable = true;
|
||||
extensions = {
|
||||
dap-ui.enable = true;
|
||||
dap-virtual-text.enable = true;
|
||||
};
|
||||
};
|
||||
{ pkgs, ... }: {
|
||||
extraConfigLua = ''
|
||||
local dap = require('dap')
|
||||
|
||||
dap.adapters.coreclr = {
|
||||
type = 'executable',
|
||||
command = '${pkgs.netcoredbg}/bin/netcoredbg',
|
||||
args = {'--interpreter=vscode'}
|
||||
}
|
||||
|
||||
'';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user