Newest nvim updates

This commit is contained in:
Raelon
2026-04-13 19:15:07 -04:00
parent 3c392bc31d
commit 2d6840bbc6
5 changed files with 33 additions and 1 deletions

9
lsp/gdscript.lua Normal file
View File

@@ -0,0 +1,9 @@
local vim = vim
local port = os.getenv 'GDScript_Port' or '6005'
local cmd = vim.lsp.rpc.connect('127.0.0.1', tonumber(port))
return {
cmd = cmd,
filetypes = { 'gd', 'gdscript', 'gdscript3' },
root_markers = { 'project.godot', '.git' }
}