2021-03-07 14:22:30 +00:00
|
|
|
local function map(mode, lhs, rhs, opts)
|
2021-03-13 01:23:02 +00: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 14:22:30 +00:00
|
|
|
end
|
|
|
|
|
2021-03-13 01:23:02 +00:00
|
|
|
-- keybind list
|
|
|
|
map("", "<leader>c", '"+y')
|
2021-03-14 04:24:48 +00:00
|
|
|
|
|
|
|
-- open terminals
|
|
|
|
map("n", "<C-b>" , [[<Cmd> vnew term://bash<CR>]] , opt) -- split term vertically , over the right
|
|
|
|
map("n", "<C-x>" , [[<Cmd> split term://bash | resize 10 <CR>]] , opt) -- split term vertically , over the right
|