Neovim: Add H/L mappings
This commit is contained in:
@ -13,6 +13,8 @@
|
|||||||
"S"
|
"S"
|
||||||
"t"
|
"t"
|
||||||
"T"
|
"T"
|
||||||
|
"H"
|
||||||
|
"L"
|
||||||
|
|
||||||
# Use flash to repeat f/F instead of ;/,
|
# Use flash to repeat f/F instead of ;/,
|
||||||
# ;/, are now free for localleader and exiting visual mode like helix
|
# ;/, are now free for localleader and exiting visual mode like helix
|
||||||
@ -55,6 +57,18 @@
|
|||||||
options.desc = "Move Cursor Up";
|
options.desc = "Move Cursor Up";
|
||||||
options.expr = true;
|
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
|
# Window resize
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user