neovim-config/lua/mappings/lua.lua

35 lines
949 B
Lua
Raw Normal View History

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-04-21 07:16:24 +00:00
local opt = {}
-- dont copy any deleted text , this is disabled by default so uncomment the below mappings if you want them!
--[[
map("n", "dd", [=[ "_dd ]=], opt)
map("v", "dd", [=[ "_dd ]=], opt)
map("v", "x", [=[ "_x ]=], opt)
]]
2021-04-01 18:53:12 +00:00
-- copy any selected text with pressing y
2021-03-13 01:23:02 +00:00
map("", "<leader>c", '"+y')
2021-03-14 04:24:48 +00:00
2021-04-02 05:36:20 +00: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 18:53:12 +00:00
2021-04-02 05:36:20 +00:00
-- COPY EVERYTHING --
map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)
2021-04-20 04:15:14 +00:00
-- toggle numbers ---
map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt)
-- toggle truezen.nvim's ataraxis mode
map("n", "<leader>z", [[ <Cmd> TZAtaraxis<CR>]], opt)