add mappings for redo and pasting to bin

This commit is contained in:
xesc 2024-08-31 21:05:35 +02:00
parent be5aaacc14
commit f742c60750
2 changed files with 8 additions and 1 deletions

View file

@ -51,3 +51,6 @@ vim.api.nvim_set_keymap("n", "<leader>vl", ":exec 'w'<cr> <bar> <cmd>loadview <c
-- <leader><leader> for fast save
vim.api.nvim_set_keymap("n", "<leader><leader>", ":exec 'w'<cr>", {silent = true})
-- <leader>r for redo
vim.api.nvim_set_keymap("n", "<leader>r", ":exec 'w <cr>", {silent = true})