nvchad/lua/mappings.lua

36 lines
1.1 KiB
Lua
Raw Normal View History

2021-03-07 09:22:30 -05:00
local function map(mode, lhs, rhs, opts)
2021-03-12 20:23:02 -05: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 09:22:30 -05:00
end
2021-04-21 03:16:24 -04: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 04:22:38 -04:00
--[[ remove this line
2021-04-21 03:16:24 -04:00
map("n", "dd", [=[ "_dd ]=], opt)
map("v", "dd", [=[ "_dd ]=], opt)
map("v", "x", [=[ "_x ]=], opt)
2021-05-09 04:22:38 -04:00
this line too ]]
2021-04-21 03:16:24 -04:00
2021-04-02 01:36:20 -04:00
-- OPEN TERMINALS --
2021-05-09 04:22:38 -04: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 14:53:12 -04:00
2021-05-09 04:22:38 -04:00
-- COPY EVERYTHING in the file--
2021-04-02 01:36:20 -04:00
map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)
2021-04-20 00:15:14 -04:00
-- toggle numbers ---
map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt)
2021-04-24 00:57:14 -04:00
-- toggle truezen.nvim's ataraxis and minimalist mode
2021-04-20 00:15:14 -04:00
map("n", "<leader>z", [[ <Cmd> TZAtaraxis<CR>]], opt)
2021-04-24 00:57:14 -04:00
map("n", "<leader>m", [[ <Cmd> TZMinimalist<CR>]], opt)
2021-05-09 04:22:38 -04:00
map("n", "<C-s>", [[ <Cmd> w <CR>]], opt) -- save