Skip to content

Instantly share code, notes, and snippets.

@wilbefast
Created September 20, 2015 20:16
Show Gist options
  • Save wilbefast/2e8564e531443b177629 to your computer and use it in GitHub Desktop.
Save wilbefast/2e8564e531443b177629 to your computer and use it in GitHub Desktop.
A simple little configuration file for keyboard controls.
return {
keyboard = {
{
up = { "w", "z" },
down = { "s" },
left = { "q", "a" },
right = { "d"},
confirm = { "lctrl" },
cancel = { "h" },
advanced = { "lalt" },
basic = { "lshift" }
},
{
up = { "up" },
down = { "down" },
left = { "left" },
right = { "right"},
confirm = { "rctrl", "return" },
cancel = { "l" },
advanced = { "ralt" },
basic = { "rshift" }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment