mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
18 lines
290 B
Lua
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
|