mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-29 14:28:41 +02:00
updates
This commit is contained in:
parent
df4972beae
commit
ca164c3cb7
2 changed files with 23 additions and 4 deletions
|
@ -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',
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue