From c93036d9f258e4741f3076c17f337a41c9e83342 Mon Sep 17 00:00:00 2001 From: Olli Date: Sat, 6 Jun 2026 11:17:50 +0200 Subject: [PATCH] nvim: Remove Java-specific DAP settings --- nvim/lua/user/dap.lua | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/nvim/lua/user/dap.lua b/nvim/lua/user/dap.lua index 07c22e8..0d7d022 100644 --- a/nvim/lua/user/dap.lua +++ b/nvim/lua/user/dap.lua @@ -1,21 +1 @@ local dap = require("dap") - -dap.configurations.java = {{ - type = 'java', - request = 'attach', - name = 'Debug (Attach) port 5005', - hostName = '127.0.0.1', - port = 5005, -},{ - type = 'java', - request = 'attach', - name = 'Debug (Attach) port 5006', - hostName = '127.0.0.1', - port = 5006, -},{ - type = 'java', - request = 'attach', - name = 'Debug (Attach) port 5105', - hostName = '127.0.0.1', - port = 5105, -}}