woohooo
This commit is contained in:
commit
085347ddac
49 changed files with 1931 additions and 0 deletions
28
lua/custom/godot_config.lua
Normal file
28
lua/custom/godot_config.lua
Normal 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' },
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue