From 667e3e053984951c4160305221dacbcc658c04c3 Mon Sep 17 00:00:00 2001 From: Vladislav Date: Mon, 4 Mar 2024 03:31:16 +0100 Subject: [PATCH] Get this Go out of my configs --- lua/kickstart/plugins/debug.lua | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 7fc783fa..4eb58450 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -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, }