From 6359b1dbb25530b9e6ab0ea3e2451d0a164a7577 Mon Sep 17 00:00:00 2001 From: fm39hz-laptop Date: Thu, 27 Jun 2024 14:09:57 +0700 Subject: [PATCH] chore: move nvim-dap to override --- lua/plugins/development.lua | 21 --------------------- lua/plugins/override.lua | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/lua/plugins/development.lua b/lua/plugins/development.lua index 0450b5a..cc8a28a 100644 --- a/lua/plugins/development.lua +++ b/lua/plugins/development.lua @@ -72,28 +72,7 @@ return { "typescriptreact", }, }, - -- LSP config { - "mfussenegger/nvim-dap", - opts = { - adapters = { - godot = { - type = "server", - host = "127.0.0.1", - port = 6006, - }, - }, - configurations = { - cs = { - { - type = "godot", - request = "launch", - name = "Launch Scene", - project = "${workspaceFolder}", - launch_scene = true, - }, - }, - }, }, }, } diff --git a/lua/plugins/override.lua b/lua/plugins/override.lua index c86ce84..52f5c89 100644 --- a/lua/plugins/override.lua +++ b/lua/plugins/override.lua @@ -180,4 +180,27 @@ return { }, }, }, + { + "mfussenegger/nvim-dap", + opts = { + adapters = { + godot = { + type = "server", + host = "127.0.0.1", + port = 6006, + }, + }, + configurations = { + cs = { + { + type = "godot", + request = "launch", + name = "Launch Scene", + project = "${workspaceFolder}", + launch_scene = true, + }, + }, + }, + }, + }, }