This commit is contained in:
saarsena@gmail.com 2026-04-08 06:38:52 -04:00
commit 085347ddac
49 changed files with 1931 additions and 0 deletions

View file

@ -0,0 +1,28 @@
local godot = require 'godot'
godot.setup {
bin = 'C:\\Program Files\\godot\\Godot_v4.5.1-stable_win64.exe',
dap = {
host = '127.0.0.1',
port = 6006,
},
gui = {
console_config = {
anchor = 'SW',
border = 'double',
col = 1,
height = 10,
relative = 'editor',
row = 99999,
style = 'minimal',
width = 99999,
},
},
expose_commands = true,
}
require('godot_lsp_setup').setup {
lsp_opts = {
cmd = { 'nc', '-w', '3', '127.0.0.1', '6005' },
},
}