You've already forked dotfiles
8 lines
233 B
Lua
8 lines
233 B
Lua
-- Handles setting up the connection to a locally running Godot instance for LSP responses
|
|
|
|
return {
|
|
cmd = vim.lsp.rpc.connect('127.0.0.1', 6005),
|
|
filetypes = { 'gdscript' },
|
|
root_markers = { 'project.godot', '.git' },
|
|
}
|