diff --git a/lua/valeth/keymaps.lua b/lua/valeth/keymaps.lua index bd4a72a..371cfd2 100644 --- a/lua/valeth/keymaps.lua +++ b/lua/valeth/keymaps.lua @@ -8,6 +8,9 @@ local maps = { -- Yank to clipboard { { "n", "v" }, "y", [["+y]], { desc = "Yank to clipboard" } }, { { "n", "v" }, "Y", [["+Y]], { desc = "Yank line to clipboard" } }, + { { "n", "v" }, "p", [["+p]], { desc = "Paste clipboard after cursor" } }, + { { "n", "v" }, "P", [["+P]], { desc = "Paste clipboard before cursor" } }, + -- Move up and down visual lines for the few times I need wrapping { "n", "j", "gj" },