removed go lang dependency

This commit is contained in:
SamPosh 2023-04-10 16:09:42 +05:30 committed by GitHub
parent fcc9d657d8
commit b4ebfe474f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -20,7 +20,7 @@ return {
'jay-babu/mason-nvim-dap.nvim', 'jay-babu/mason-nvim-dap.nvim',
-- Add your own debuggers here -- Add your own debuggers here
'leoluz/nvim-dap-go', -- 'leoluz/nvim-dap-go',
'mfussenegger/nvim-dap-python' 'mfussenegger/nvim-dap-python'
}, },
@ -37,7 +37,7 @@ return {
-- online, please don't ask me how to install them :) -- online, please don't ask me how to install them :)
ensure_installed = { ensure_installed = {
-- Update this to ensure that you have the debuggers for the langs you want -- Update this to ensure that you have the debuggers for the langs you want
'delve','python' 'python'
}, },
} }
@ -81,8 +81,7 @@ return {
dap.listeners.before.event_terminated['dapui_config'] = dapui.close dap.listeners.before.event_terminated['dapui_config'] = dapui.close
dap.listeners.before.event_exited['dapui_config'] = dapui.close dap.listeners.before.event_exited['dapui_config'] = dapui.close
-- Install golang specific config -- Install python specific config
require('dap-go').setup()
require('dap-python').setup() -- Debug with default settings. require('dap-python').setup() -- Debug with default settings.
end, end,