⚙️ config(nvim): change keymap to select all text in a buffer

This commit is contained in:
Sergio Laín 2024-09-12 13:07:04 +02:00
parent 228cee8698
commit c0bf372aac
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" }) map("i", "<C-e>", "<End>", { desc = "End Of Line" })
-- Select all text -- Select all text
map("n", "<C-e>", "gg<S-V>G", { desc = "Select all Text", silent = true, noremap = true }) map("n", "<C-a>", "gg<S-V>G", { desc = "Select all Text", silent = true, noremap = true })
-- Paste options -- Paste options
map("i", "<C-v>", '<C-r>"', { desc = "Paste on Insert Mode" }) map("i", "<C-v>", '<C-r>"', { desc = "Paste on Insert Mode" })