neovim-config/lua/mappings.lua

36 lines
1.1 KiB
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!
2021-05-09 08:22:38 +00:00
--[[ remove this line
2021-04-21 07:16:24 +00:00
map("n", "dd", [=[ "_dd ]=], opt)
map("v", "dd", [=[ "_dd ]=], opt)
map("v", "x", [=[ "_x ]=], opt)
2021-05-09 08:22:38 +00:00
this line too ]]
2021-04-21 07:16:24 +00:00
2021-04-02 05:36:20 +00:00
-- OPEN TERMINALS --
2021-06-01 16:03:42 +00: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
2021-05-09 08:22:38 +00:00
map("n", "<C-t>t", [[<Cmd> tabnew | term <CR>]], opt) -- newtab
2021-04-01 18:53:12 +00:00
2021-05-09 08:22:38 +00:00
-- COPY EVERYTHING in the file--
2021-04-02 05:36:20 +00:00
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)
2021-04-24 04:57:14 +00:00
-- toggle truezen.nvim's ataraxis and minimalist mode
2021-04-20 04:15:14 +00:00
map("n", "<leader>z", [[ <Cmd> TZAtaraxis<CR>]], opt)
2021-04-24 04:57:14 +00:00
map("n", "<leader>m", [[ <Cmd> TZMinimalist<CR>]], opt)
2021-05-09 08:22:38 +00:00
map("n", "<C-s>", [[ <Cmd> w <CR>]], opt) -- save