⚙️ config(nvim): change some keymaps

This commit is contained in:
Sergio Laín 2024-03-24 01:16:03 +01:00
parent e1236e1a14
commit cbb00fcbb7
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 2 additions and 2 deletions

View file

@ -126,7 +126,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-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 -- Paste options
map("i", "<C-v>", '<C-r>"', { desc = "Paste on insert mode" }) map("i", "<C-v>", '<C-r>"', { desc = "Paste on insert mode" })

View file

@ -6,6 +6,6 @@ return {
end) end)
end, end,
keys = { keys = {
{ "<leader>sp", "<cmd>Telescope lazy<CR>", desc = "Plugins (Lazy)" }, { "<leader>sP", "<cmd>Telescope lazy<CR>", desc = "Plugins (Lazy)" },
}, },
} }