mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
feat: add godot debugger
This commit is contained in:
parent
30a63d33c0
commit
a4e7924948
1 changed files with 24 additions and 0 deletions
|
|
@ -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…
Add table
Reference in a new issue