Add files via upload

This commit is contained in:
Vibhor Jain 2024-05-18 21:17:16 +01:00 committed by GitHub
parent 5aeddfdd5d
commit bf13999f9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 242 additions and 91 deletions

View file

@ -31,7 +31,7 @@ return {
require('mason-nvim-dap').setup {
-- Makes a best effort to setup the various debuggers with
-- reasonable debug configurations
automatic_installation = true,
automatic_setup = true,
-- You can provide additional configuration to the handlers,
-- see mason-nvim-dap README for more information
@ -85,12 +85,6 @@ return {
dap.listeners.before.event_exited['dapui_config'] = dapui.close
-- Install golang specific config
require('dap-go').setup {
delve = {
-- On Windows delve must be run attached or it crashes.
-- See https://github.com/leoluz/nvim-dap-go/blob/main/README.md#configuring
detached = vim.fn.has 'win32' == 0,
},
}
require('dap-go').setup()
end,
}