nvim: cmap, blink cmp TAB

This commit is contained in:
js0ny 2025-11-26 12:55:07 +00:00
parent ab6da08e74
commit db68f9d460
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,18 @@
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