clean up
This commit is contained in:
parent
42fe8583a9
commit
446c8f899c
|
@ -60,8 +60,10 @@ vim.g.mapleader = " "
|
||||||
--command that adds new buffer and moves to it
|
--command that adds new buffer and moves to it
|
||||||
vim.api.nvim_command "com -nargs=? -complete=file_in_path New badd <args> | blast"
|
vim.api.nvim_command "com -nargs=? -complete=file_in_path New badd <args> | blast"
|
||||||
vim.api.nvim_set_keymap("n","<S-b>",":New ", opt)
|
vim.api.nvim_set_keymap("n","<S-b>",":New ", opt)
|
||||||
|
|
||||||
--removing a buffer
|
--removing a buffer
|
||||||
vim.api.nvim_set_keymap("n","<S-f>",[[<Cmd>bdelete<CR>]], opt)
|
vim.api.nvim_set_keymap("n","<S-f>",[[<Cmd>bdelete<CR>]], opt)
|
||||||
|
|
||||||
-- tabnew and tabprev
|
-- tabnew and tabprev
|
||||||
vim.api.nvim_set_keymap("n", "<S-l>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
|
vim.api.nvim_set_keymap("n", "<S-l>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
|
||||||
vim.api.nvim_set_keymap("n", "<S-s>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)
|
vim.api.nvim_set_keymap("n", "<S-s>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)
|
||||||
|
|
|
@ -6,9 +6,14 @@ local function map(mode, lhs, rhs, opts)
|
||||||
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- keybind list
|
-- copy any selected text with pressing y
|
||||||
map("", "<leader>c", '"+y')
|
map("", "<leader>c", '"+y')
|
||||||
|
|
||||||
-- open terminals
|
|
||||||
map("n", "<C-b>" , [[<Cmd> vnew term://bash<CR>]] , opt) -- split term vertically , over the right
|
-- OPEN TERMINALS --
|
||||||
map("n", "<C-x>" , [[<Cmd> split term://bash | resize 10 <CR>]] , opt) -- split term vertically , over the right
|
|
||||||
|
-- split term vertically , over the right
|
||||||
|
map("n", "<C-l>", [[<Cmd>vnew term://bash <CR>]], opt)
|
||||||
|
|
||||||
|
-- split term vertically , over the right
|
||||||
|
map("n", "<C-x>", [[<Cmd> split term://bash | resize 10 <CR>]], opt)
|
||||||
|
|
Loading…
Reference in New Issue