2021-03-07 09:22:30 -05:00
|
|
|
local function map(mode, lhs, rhs, opts)
|
2021-03-12 20:23:02 -05:00
|
|
|
local options = {noremap = true}
|
|
|
|
if opts then
|
|
|
|
options = vim.tbl_extend("force", options, opts)
|
|
|
|
end
|
|
|
|
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
2021-03-07 09:22:30 -05:00
|
|
|
end
|
|
|
|
|
2021-03-12 20:23:02 -05:00
|
|
|
-- keybind list
|
|
|
|
map("", "<leader>c", '"+y')
|