mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
16 lines
370 B
Lua
16 lines
370 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/godotengine/godot
|
|
---
|
|
--- Language server for GDScript, used by Godot Engine.
|
|
|
|
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' },
|
|
}
|