Separate custom bindings from generic bindings
This commit is contained in:
parent
6f0a85e0db
commit
6ec1f92bc9
9 changed files with 330 additions and 279 deletions
14
rc.lua
14
rc.lua
|
@ -56,11 +56,15 @@ end
|
|||
|
||||
-- {{{ Key bindings
|
||||
|
||||
bindings = require("bindings")
|
||||
bindings.setup()
|
||||
bindings.modalbind.set_x_offset(18)
|
||||
bindings.add_bindings(tags.create_bindings())
|
||||
bindings.apply()
|
||||
binder = require("separable.binder")
|
||||
binder.modal.set_x_offset(18)
|
||||
|
||||
binder.add_default_bindings()
|
||||
binder.add_bindings(tags.create_bindings())
|
||||
binder.add_bindings(require("mybindings"))
|
||||
|
||||
binder.apply()
|
||||
|
||||
-- }}}
|
||||
|
||||
-- {{{ rules
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue