Get this Go out of my configs

This commit is contained in:
Vladislav 2024-03-04 03:31:16 +01:00
parent 46794db36c
commit 667e3e0539
No known key found for this signature in database
GPG Key ID: 07A1CCBD643CA257
1 changed files with 1 additions and 5 deletions

View File

@ -19,7 +19,6 @@ return {
'jay-babu/mason-nvim-dap.nvim',
-- Add your own debuggers here
'leoluz/nvim-dap-go',
},
config = function()
local dap = require 'dap'
@ -38,7 +37,7 @@ return {
-- online, please don't ask me how to install them :)
ensure_installed = {
-- Update this to ensure that you have the debuggers for the langs you want
'delve',
'codelldb',
},
}
@ -80,8 +79,5 @@ return {
dap.listeners.after.event_initialized['dapui_config'] = dapui.open
dap.listeners.before.event_terminated['dapui_config'] = dapui.close
dap.listeners.before.event_exited['dapui_config'] = dapui.close
-- Install golang specific config
require('dap-go').setup()
end,
}