nvim: Change select all mapping

I only rarely use it these days, and it takes up a valuable 'menu'
space. Simply capitalize for now so it is more out of the way.
This commit is contained in:
Marty Oehme 2025-01-31 12:36:09 +01:00
parent f4da232b79
commit 8486f8f0f6
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -120,7 +120,7 @@ map("n", "<leader>\\", ":vsp<cr>", { desc = "open vert split" })
map("n", "<leader>T", ":tabedit | Vifm<cr>", { desc = "open tab" })
-- select the whole buffer with <leader>-a
map("n", "<leader>a", "ggVG", { desc = "select all" })
map("n", "<leader>A", "ggVG", { desc = "select all" })
-- Format current Paragraph (esp useful in prose writing)
map("n", "<localleader>q", "gqap", { silent = true, desc = "Format current paragraph" })