initial commit

This commit is contained in:
Robin Jenni
2026-03-10 18:39:47 +01:00
commit fae6e1fb6f
30 changed files with 832 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
---@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' },
}