Added bindings module

This commit is contained in:
Noella
2024-03-04 20:05:40 -07:00
parent 8464403fca
commit d738d4937f
7 changed files with 271 additions and 222 deletions

8
bindings/init.lua Normal file
View File

@@ -0,0 +1,8 @@
local _M = {
global_buttons = require("bindings.global_buttons"),
client_buttons = require("bindings.client_buttons"),
global_keys = require("bindings.global_keys"),
client_keys = require("bindings.client_keys"),
}
return _M