neovim-confs/lua/mappings.lua

36 lines
1.1 KiB
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-21 09:16:24 +02:00
local opt = {}
-- dont copy any deleted text , this is disabled by default so uncomment the below mappings if you want them!
2021-05-09 10:22:38 +02:00
--[[ remove this line
2021-04-21 09:16:24 +02:00
map("n", "dd", [=[ "_dd ]=], opt)
map("v", "dd", [=[ "_dd ]=], opt)
map("v", "x", [=[ "_x ]=], opt)
2021-05-09 10:22:38 +02:00
this line too ]]
2021-04-21 09:16:24 +02:00
2021-04-02 07:36:20 +02:00
-- OPEN TERMINALS --
2021-05-09 10:22:38 +02:00
map("n", "<C-l>", [[<Cmd>vnew term://bash <CR>]], opt) -- over right
map("n", "<C-x>", [[<Cmd> split term://bash | resize 10 <CR>]], opt) -- bottom
map("n", "<C-t>t", [[<Cmd> tabnew | term <CR>]], opt) -- newtab
2021-04-01 20:53:12 +02:00
2021-05-09 10:22:38 +02:00
-- COPY EVERYTHING in the file--
2021-04-02 07:36:20 +02:00
map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)
2021-04-20 06:15:14 +02:00
-- toggle numbers ---
map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt)
2021-04-24 06:57:14 +02:00
-- toggle truezen.nvim's ataraxis and minimalist mode
2021-04-20 06:15:14 +02:00
map("n", "<leader>z", [[ <Cmd> TZAtaraxis<CR>]], opt)
2021-04-24 06:57:14 +02:00
map("n", "<leader>m", [[ <Cmd> TZMinimalist<CR>]], opt)
2021-05-09 10:22:38 +02:00
map("n", "<C-s>", [[ <Cmd> w <CR>]], opt) -- save