diff --git a/.config/nvim/lua/my/keymaps.lua b/.config/nvim/lua/my/keymaps.lua index 032938e..b06415f 100644 --- a/.config/nvim/lua/my/keymaps.lua +++ b/.config/nvim/lua/my/keymaps.lua @@ -60,9 +60,10 @@ map({ 'v', 'n' }, 'y', '"+y', 'Yank to system clipboard') map({ 'v', 'n' }, '', '"*y', 'Yank to system selection') map('n', 'p', '"+p', 'Paste from system clipboard') -map('n', 'P', '"+P', 'Paste from system clipboard') -map('n', '', '"*p', 'Paste from system selection (after)') -map('n', '', '"*P', 'Paste from system selection (before)') +map('n', 'P', '"+P', 'Paste from system clipboard') +map('n', '', '"*p', 'Paste from system selection') +map('n', '', '"*P', 'Paste from system selection') + -- toggle between beginning of line and beginning of text map({ 'n', 'i', 'v' }, '',