1

Neovim: Add H/L mappings

This commit is contained in:
2025-03-09 13:39:17 +01:00
parent eaf9c7657c
commit 2d5d0c2b98

View File

@ -55,6 +55,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
{