From 0fff88120ae2b2cd350b43a27af7a923e02b7b32 Mon Sep 17 00:00:00 2001 From: Per Malmberg Date: Fri, 10 May 2024 19:15:00 +0200 Subject: [PATCH] Fix int vs bool. --- lua/kickstart/plugins/debug.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 6b79eef8..31dfecf5 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -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,