nvimdotfiles/after/plugin/dap/dap-gdscript.lua
Marco b629837cec some changes
Add lua-ls
Add lsp for gdscript.
Add plugin for call hierarchy
2023-09-20 22:43:26 +02:00

18 lines
284 B
Lua

local dap = require("dap")
dap.adapters.godot = {
type = "server",
host = '127.0.0.1',
port = 6006,
}
dap.configurations.gdscript = {
{
type = "godot",
request = "launch",
name = "Launch scene",
project = "${workspaceFolder}",
launch_scene = true,
}
}