Files
dotfiles/nvim/after/lsp/gdscript.lua
2026-09-01 09:29:47 -05:00

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' },
}