diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-11-07 04:01:46 +0100 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-07 04:01:46 +0100 | 
| commit | 45626294e64839267a7a6ec7daff01b31ae60608 (patch) | |
| tree | 58ea14c8446e4f4ddad49a2f583454ee8cd6791d /.config/nvim | |
| parent | 5a0c981679093abe6185fc9782a172bfc41f8252 (diff) | |
nvim: Remove bindings I don’t want
Diffstat (limited to '.config/nvim')
| -rw-r--r-- | .config/nvim/lua/mango/remap.lua | 11 | 
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', '`', "'") |