1

Neovim: Add H/L mappings

This commit is contained in:
2025-03-09 13:39:17 +01:00
parent ed49f34b5f
commit e79cd33ecd

View File

@ -13,6 +13,8 @@
"S"
"t"
"T"
"H"
"L"
# Use flash to repeat f/F instead of ;/,
# ;/, are now free for localleader and exiting visual mode like helix
@ -55,6 +57,18 @@
options.desc = "Move Cursor Up";
options.expr = true;
}
{
mode = "n";
key = "H";
action = "^";
options.desc = "Move Cursor to Line Start";
}
{
mode = "n";
key = "L";
action = "$";
options.desc = "Move Cursor to Line End";
}
# Window resize
{