1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00
dotfiles/nvim/lua/utils/keys.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