bytepath/learns.code-workspace
2025-11-09 19:45:08 -03:00

55 lines
No EOL
1,007 B
Text

{
"folders": [
{
"path": "."
}
],
"settings": {
"Lua.runtime.version": "LuaJIT",
"Lua.runtime.special": {
"love.filesystem.load": "loadfile"
},
"Lua.diagnostics.globals": ["love"],
"Lua.workspace.library": [
"${3rd}/love2d/library",
"${3rd}/classic",
"${workspaceFolder}/def"
],
"Lua.workspace.checkThirdParty": true,
"Lua.diagnostics.disable": [
"lowercase-global"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "lua-local",
"request": "launch",
"name": "Debug Love",
"program": {
"command": "/usr/bin/love"
},
"args": [ "${workspaceFolder} "]
},
{
"name": "Debug Lua Interpreter",
"type": "lua-local",
"request": "launch",
"program": {
"lua": "lua",
"file": "${file}"
}
},
{
"name": "Debug Custom Lua Environment",
"type": "lua-local",
"request": "launch",
"program": {
"command": "command"
},
"args": []
}
]
}
}