mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
9 lines
254 B
Lua
9 lines
254 B
Lua
local port = os.getenv 'GDScript_Port' or '6005'
|
|
local cmd = vim.lsp.rpc.connect('127.0.0.1', tonumber(port))
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = cmd,
|
|
filetypes = { 'gd', 'gdscript', 'gdscript3' },
|
|
root_markers = { 'project.godot', '.git' },
|
|
}
|