You've already forked dotfiles
in LSP definitions for servers that are used, adding in a script to check for LSPs, removing some extraneous items in the tmux conf, moving autopairs to its own file
10 lines
264 B
Lua
10 lines
264 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 = {
|
|
'gd', 'gdscript', 'gdscript3'
|
|
},
|
|
root_markers = { 'project.godot', '.git' },
|
|
}
|