feat: add godot debugger

pull/99/head
fm39hz-laptop 2024-06-20 16:49:01 +07:00
parent 124c87592a
commit 0604e5b859
1 changed files with 24 additions and 0 deletions

View File

@ -71,4 +71,28 @@ 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,
},
},
},
},
},
}