Neovim: add missing window bindings
This commit is contained in:
parent
dacb6643e2
commit
de024aa2bd
1 changed files with 18 additions and 0 deletions
|
|
@ -300,6 +300,24 @@ in {
|
|||
action = "<C-w>l";
|
||||
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
|
||||
{
|
||||
mode = "n";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue