neovim-confs/lua/mappings/lua.lua

18 lines
544 B
Lua
Raw Normal View History

2021-03-07 15:22:30 +01:00
local function map(mode, lhs, rhs, opts)
2021-03-13 02:23:02 +01: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 15:22:30 +01:00
end
2021-04-01 20:53:12 +02:00
-- copy any selected text with pressing y
2021-03-13 02:23:02 +01:00
map("", "<leader>c", '"+y')
2021-03-14 05:24:48 +01:00
2021-04-02 07:36:20 +02:00
-- OPEN TERMINALS --
map("n", "<C-l>", [[<Cmd>vnew term://bash <CR>]], opt) -- open term over right
map("n", "<C-x>", [[<Cmd> split term://bash | resize 10 <CR>]], opt) -- open term bottom
2021-04-01 20:53:12 +02:00
2021-04-02 07:36:20 +02:00
-- COPY EVERYTHING --
map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)