1
0
Fork 0

nvim: better paste keybind

This commit is contained in:
Luca Bilke 2024-07-02 17:29:07 +02:00
parent 3a899e78ff
commit 875ea1b459
Signed by: luca
GPG Key ID: F6E11C9BAA7C82F5
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 })