🐛 fix(nvim): select text keymap conflict

This commit is contained in:
Sergio Laín 2024-09-14 18:35:30 +02:00
parent fc9c50fa5a
commit 781d952d00
No known key found for this signature in database
GPG key ID: 8429B2EE312F8150

View file

@ -148,7 +148,7 @@ map("i", "<C-a>", "<Home>", { desc = "Start Of Line" })
map("i", "<C-e>", "<End>", { desc = "End Of Line" })
-- Select all text
map("n", "<C-a>", "gg<S-V>G", { desc = "Select all Text", silent = true, noremap = true })
map("n", "<C-e>", "gg<S-V>G", { desc = "Select all Text", silent = true, noremap = true })
-- Paste options
map("i", "<C-v>", '<C-r>"', { desc = "Paste on Insert Mode" })