nvim_dotfiles/lua/custom/godot_config.lua

29 lines
551 B
Lua
Raw Normal View History

2026-04-08 06:38:52 -04:00
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' },
},
}