1
0
Fork 0

nvim: better paste keybind

This commit is contained in:
Luca Bilke 2024-07-02 17:29:07 +02:00
parent e906518fc4
commit 6d1313255d
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@
-- Add any additional keymaps here
local unmap = vim.api.nvim_del_keymap
local map = vim.keymap.set
unmap("n", "<Leader>uL")
unmap("n", "<Leader>ul")
map("v", "p", "pgvy", { remap = true })