module(nvim): add C-a keymap

This commit is contained in:
Michael Thomas 2023-11-16 10:56:56 -05:00
parent c41daa54de
commit 9fb0f80686

View File

@ -1,3 +1,8 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here
local keymap = vim.keymap
-- Select all
keymap.set("n", "<C-a>", "gg<S-v>G$")