nvim/after/plugin/dap.lua

19 lines
315 B
Lua
Raw Permalink Normal View History

2023-11-21 17:00:33 +03:00
local dap = require('dap')
dap.adapters.godot = {
type = "server",
host = "127.0.0.1",
port = 6006,
}
2023-11-21 18:42:34 +03:00
dap.configurations.gdscript = {
{
type = "godot",
request = "launch",
name = "Launch scene",
project = "${workspaceFolder}",
launch_scene = true,
}
}