Create binds.lua
This commit is contained in:
parent
189dce1e06
commit
a9f1e61862
1 changed files with 20 additions and 0 deletions
20
neovim/lua/rf/binds.lua
Normal file
20
neovim/lua/rf/binds.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
local M = {}
|
||||
|
||||
local function bind(operation, outer_operations)
|
||||
outer_operations = outer_operations or { noremap = true }
|
||||
return function(l, r, o)
|
||||
o = vim.tbl_extend('force',
|
||||
outer_operations,
|
||||
o or {}
|
||||
)
|
||||
vim.keymap.set(operation, l, r, o)
|
||||
end
|
||||
end
|
||||
|
||||
M.nmap = bind('n', { noremap = false })
|
||||
M.nnoremap = bind('n')
|
||||
M.vnoremap = bind('v')
|
||||
M.xnoremap = bind('x')
|
||||
M.inoremap = bind('i')
|
||||
|
||||
return M
|
Loading…
Reference in a new issue