mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
7 lines
224 B
Lua
7 lines
224 B
Lua
return function(v, opts)
|
|
local c = vim.deepcopy(v)
|
|
local lhs = table.remove(c, 1)
|
|
local rhs = table.remove(c, 1)
|
|
opts = vim.tbl_deep_extend("force", c, opts or {})
|
|
vim.keymap.set('n', lhs, rhs, opts)
|
|
end
|