From 4b2997c4de5b90193ead9a54d61ecb085303f22b Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Mon, 2 Dec 2024 23:08:18 +0100 Subject: [PATCH] NixVim: Make some keybinds silent --- home/features/coding/nixvim/keymaps.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home/features/coding/nixvim/keymaps.nix b/home/features/coding/nixvim/keymaps.nix index 8071b65..e3b565b 100644 --- a/home/features/coding/nixvim/keymaps.nix +++ b/home/features/coding/nixvim/keymaps.nix @@ -17,6 +17,7 @@ key = "ch"; action = "noh"; options = { + silent = true; desc = "Clear Highlighting"; }; } @@ -41,6 +42,7 @@ key = ""; action = "Neotree toggle"; options = { + silent = true; desc = "Toggle Neotree"; }; } @@ -81,6 +83,7 @@ key = ""; action = ":wincmd k"; options = { + silent = true; desc = "Go Up"; }; } @@ -89,6 +92,7 @@ key = ""; action = ":wincmd j"; options = { + silent = true; desc = "Go Down"; }; } @@ -97,6 +101,7 @@ key = ""; action = ":wincmd h"; options = { + silent = true; desc = "Go Left"; }; } @@ -105,6 +110,7 @@ key = ""; action = ":wincmd l"; options = { + silent = true; desc = "Go Right"; }; }