aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorPer Malmberg <PerMalmberg@users.noreply.github.com>2024-05-10 19:43:22 +0200
committerGitHub <noreply@github.com>2024-05-10 13:43:22 -0400
commit5aeddfdd5d0308506ec63b0e4f8de33e2a39355f (patch)
tree963b002db4babb05f59e290902d553a71668efec /lua
parentb9bd02d55b77293291a38fac9abe46acad9ab91d (diff)
Automatically set detached state as needed. (#925)
* Automatically set detached state as needed. * Use vim.fn.has instead. * Fix int vs bool.
Diffstat (limited to 'lua')
-rw-r--r--lua/kickstart/plugins/debug.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua
index d4d1465..31dfecf 100644
--- a/lua/kickstart/plugins/debug.lua
+++ b/lua/kickstart/plugins/debug.lua
@@ -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,
}