{ "folders": [ { "path": "." } ], "settings": { "Lua.runtime.version": "LuaJIT", "Lua.runtime.special": { "love.filesystem.load": "loadfile" }, "Lua.diagnostics.globals": ["love"], "Lua.workspace.library": ["${3rd}/love2d/library"], "Lua.workspace.checkThirdParty": true }, "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": [] } ] } }