dotfiles/home/dot_config/nvim/lua/keymaps/cmap.lua
2025-11-26 12:55:07 +00:00

18 lines
290 B
Lua

local M = {
{
keys = "<C-A>",
cmd = "<Home>",
opts = { desc = "Command-line beginning", silent = true },
},
{
keys = "<C-E>",
cmd = "<End>",
opts = { desc = "Command-line end", silent = true },
},
}
for _, map in ipairs(M) do
map.mode = "c"
end
return M