{ "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": [] } ] } }