Neovim: Add H/L mappings
This commit is contained in:
@ -55,6 +55,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