Skip to content

Instantly share code, notes, and snippets.

@Achie72
Created November 29, 2025 10:35
Show Gist options
  • Select an option

  • Save Achie72/b254cd72f7f188f3e95599d4e4546c12 to your computer and use it in GitHub Desktop.

Select an option

Save Achie72/b254cd72f7f188f3e95599d4e4546c12 to your computer and use it in GitHub Desktop.
launch.json for love2d on linux mint
{
"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