Created
November 29, 2025 10:35
-
-
Save Achie72/b254cd72f7f188f3e95599d4e4546c12 to your computer and use it in GitHub Desktop.
launch.json for love2d on linux mint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "lua-local", | |
| "request": "launch", | |
| "name": "Debug", | |
| "program": { | |
| "command": "love" | |
| }, | |
| "args": [ | |
| ".", | |
| "debug" | |
| ], | |
| }, | |
| { | |
| "type": "lua-local", | |
| "request": "launch", | |
| "name": "Release", | |
| "program": { | |
| "command": "love" | |
| }, | |
| "args": [ | |
| ".", | |
| ], | |
| }, | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment