Update .config/nvim/init.lua

Update .config/nvim/lazy-lock.json
Update .config/nvim/lua/config/20_keymaps.lua
This commit is contained in:
Lewis Wynne 2025-11-03 01:57:21 +00:00
parent 6a448f0654
commit 453f1eea5f
3 changed files with 8 additions and 4 deletions

View file

@ -7,9 +7,6 @@ end
local nmap_leader = function(lhs, rhs, desc)
vim.keymap.set('n', '<Leader>' .. lhs, rhs, { desc = desc })
end
local unmap = function(lhs, rhs)
vim.keymap.del(lhs, rhs)
end
-- Keymaps ====================================================
nmap('[p', '<Cmd>exe "put! " . v:register<CR>', 'Paste above')
nmap(']p', '<Cmd>exe "put " . v:register<Cr>', 'Paste below')