We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fafe1a7 commit ee90341Copy full SHA for ee90341
lua/kickstart/plugins/debug.lua
@@ -85,6 +85,12 @@ return {
85
dap.listeners.before.event_exited['dapui_config'] = dapui.close
86
87
-- Install golang specific config
88
- require('dap-go').setup()
+ require('dap-go').setup {
89
+ delve = {
90
+ -- On Windows delve must be run attached or it crashes.
91
+ -- See https://github.com/leoluz/nvim-dap-go/blob/main/README.md#configuring
92
+ detached = vim.fn.has 'win32' == 0,
93
+ },
94
+ }
95
end,
96
}
0 commit comments