From fd92e9df27b457a4d660ae5c85267ae511b938c3 Mon Sep 17 00:00:00 2001 From: Marat Bondarenko Date: Wed, 23 Oct 2024 15:46:53 +0300 Subject: [PATCH] fix(dap): remove explicit `load_launchjs` call --- lua/lazyvim/plugins/extras/dap/core.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lua/lazyvim/plugins/extras/dap/core.lua b/lua/lazyvim/plugins/extras/dap/core.lua index 67a3d71b..ac6709f1 100644 --- a/lua/lazyvim/plugins/extras/dap/core.lua +++ b/lua/lazyvim/plugins/extras/dap/core.lua @@ -69,11 +69,6 @@ return { vscode.json_decode = function(str) return vim.json.decode(json.json_strip_comments(str)) end - - -- Extends dap.configurations with entries read from .vscode/launch.json - if vim.fn.filereadable(".vscode/launch.json") then - vscode.load_launchjs() - end end, },