new-main #1

Open
SailReal wants to merge 90 commits from new-main into main
1 changed files with 7 additions and 1 deletions
Showing only changes of commit 5aeddfdd5d - Show all commits

View File

@ -85,6 +85,12 @@ return {
dap.listeners.before.event_exited['dapui_config'] = dapui.close
-- Install golang specific config
require('dap-go').setup()
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,
},
}
end,
}