mirror of
https://github.com/tcaxle/kickstart.nvim.git
synced 2024-11-21 23:01:56 +00:00
Automatically set detached state as needed. (#925)
* Automatically set detached state as needed. * Use vim.fn.has instead. * Fix int vs bool.
This commit is contained in:
parent
b9bd02d55b
commit
5aeddfdd5d
@ -85,6 +85,12 @@ return {
|
|||||||
dap.listeners.before.event_exited['dapui_config'] = dapui.close
|
dap.listeners.before.event_exited['dapui_config'] = dapui.close
|
||||||
|
|
||||||
-- Install golang specific config
|
-- 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,
|
end,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user