mirror of https://github.com/LazyVim/starter
feat: add godot debugger
parent
124c87592a
commit
0604e5b859
|
@ -71,4 +71,28 @@ return {
|
||||||
"typescriptreact",
|
"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,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue