Fix int vs bool.
This commit is contained in:
parent
4a64dc1449
commit
0fff88120a
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ return {
|
|||
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 = not vim.fn.has 'win32',
|
||||
detached = vim.fn.has 'win32' == 0,
|
||||
},
|
||||
}
|
||||
end,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue