This commit is contained in:
Paul-0x5061756c 2024-06-05 10:03:47 +02:00
parent df4972beae
commit ca164c3cb7
2 changed files with 23 additions and 4 deletions

View file

@ -35,13 +35,25 @@ return {
-- You can provide additional configuration to the handlers,
-- see mason-nvim-dap README for more information
handlers = {},
handlers = {
function (config)
require('mason-nvim-dap').default_setup(config)
end,
coreclr = function (config)
config.adapters = {
type = 'executable',
command = 'dotnet run',
args = { '--watch' },
}
require('mason-nvim-dap').default_setup(config)
end,
},
-- You'll need to check that you have the required things installed
-- online, please don't ask me how to install them :)
ensure_installed = {
-- Update this to ensure that you have the debuggers for the langs you want
'delve',
'coreclr',
},
}