Neovim: add missing window bindings

This commit is contained in:
Paul-Henri Froidmont 2024-07-14 07:19:36 +02:00
parent dacb6643e2
commit de024aa2bd
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE

View file

@ -300,6 +300,24 @@ in {
action = "<C-w>l"; action = "<C-w>l";
options = { desc = "Go to Right Winddow"; remap = true; }; options = { desc = "Go to Right Winddow"; remap = true; };
} }
{
mode = "n";
key = "<leader>wl";
action = "<C-w>l";
options = { desc = "Go to Right Winddow"; remap = true; };
}
{
mode = "n";
key = "<c-h>";
action = "<C-w>h";
options = { desc = "Go to Left Winddow"; remap = true; };
}
{
mode = "n";
key = "<leader>wh";
action = "<C-w>h";
options = { desc = "Go to Left Winddow"; remap = true; };
}
# Move lines # Move lines
{ {
mode = "n"; mode = "n";