summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-11-07 04:01:46 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-11-07 04:01:46 +0100
commit45626294e64839267a7a6ec7daff01b31ae60608 (patch)
tree58ea14c8446e4f4ddad49a2f583454ee8cd6791d /.config
parent5a0c981679093abe6185fc9782a172bfc41f8252 (diff)
nvim: Remove bindings I don’t want
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/mango/remap.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/.config/nvim/lua/mango/remap.lua b/.config/nvim/lua/mango/remap.lua
index 2c41cfc..a5b42b0 100644
--- a/.config/nvim/lua/mango/remap.lua
+++ b/.config/nvim/lua/mango/remap.lua
@@ -27,17 +27,6 @@ remap('n', '<C-u>', '<C-u>zz')
remap('n', 'n', 'nzzzv')
remap('n', 'N', 'Nzzzv')
--- Paste and delete without clobbering primary register
-remap('x', '<leader>p', '"_dP')
-remap('nv', '<leader>d', '"_d')
-
--- Copy to system clipboard
-remap('nv', '<leader>y', '"+y')
-remap('n', '<leader>Y', '"+Y')
-
--- Paste from system clipboard
-remap('i', '<C-+>', '"+pa')
-
-- Swap the jump-to-mark bindings
remap('nv', "'", '`')
remap('nv', '`', "'")