comment out unused debugger

This commit is contained in:
Baipyrus 2024-05-14 10:39:32 +02:00
parent b111404bd0
commit 9058853062

View File

@ -14,6 +14,9 @@ return {
-- Installs the debug adapters for you -- Installs the debug adapters for you
'williamboman/mason.nvim', 'williamboman/mason.nvim',
'jay-babu/mason-nvim-dap.nvim', 'jay-babu/mason-nvim-dap.nvim',
-- Language specific debuggers
-- 'leoluz/nvim-dap-go',
}, },
config = function() config = function()
local dap = require 'dap' local dap = require 'dap'
@ -62,13 +65,13 @@ 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 = { -- delve = {
-- On Windows delve must be run attached or it crashes. -- -- On Windows delve must be run attached or it crashes.
-- See https://github.com/leoluz/nvim-dap-go/blob/main/README.md#configuring -- -- See https://github.com/leoluz/nvim-dap-go/blob/main/README.md#configuring
detached = vim.fn.has 'win32' == 0, -- detached = vim.fn.has 'win32' == 0,
}, -- },
} -- }
end, end,
}, },
} }