NixVim: Make some keybinds silent
This commit is contained in:
parent
743258bb44
commit
4b2997c4de
1 changed files with 6 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
key = "<leader>ch";
|
||||
action = "<cmd>noh<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
desc = "Clear Highlighting";
|
||||
};
|
||||
}
|
||||
|
@ -41,6 +42,7 @@
|
|||
key = "<C-n>";
|
||||
action = "<Cmd>Neotree toggle<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
desc = "Toggle Neotree";
|
||||
};
|
||||
}
|
||||
|
@ -81,6 +83,7 @@
|
|||
key = "<c-k>";
|
||||
action = ":wincmd k<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
desc = "Go Up";
|
||||
};
|
||||
}
|
||||
|
@ -89,6 +92,7 @@
|
|||
key = "<c-j>";
|
||||
action = ":wincmd j<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
desc = "Go Down";
|
||||
};
|
||||
}
|
||||
|
@ -97,6 +101,7 @@
|
|||
key = "<c-h>";
|
||||
action = ":wincmd h<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
desc = "Go Left";
|
||||
};
|
||||
}
|
||||
|
@ -105,6 +110,7 @@
|
|||
key = "<c-l>";
|
||||
action = ":wincmd l<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
desc = "Go Right";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue