clean up
This commit is contained in:
parent
3a244429d5
commit
78cefbb297
14 changed files with 576 additions and 552 deletions
|
@ -1,9 +1,10 @@
|
|||
local function map(mode, lhs, rhs, opts)
|
||||
local options = {noremap = true}
|
||||
if opts then options = vim.tbl_extend('force', options, opts) end
|
||||
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
||||
local options = {noremap = true}
|
||||
if opts then
|
||||
options = vim.tbl_extend("force", options, opts)
|
||||
end
|
||||
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
||||
end
|
||||
|
||||
-- keybind list
|
||||
map('', '<leader>c', '"+y')
|
||||
|
||||
-- keybind list
|
||||
map("", "<leader>c", '"+y')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue