From 24b2035dd936c73bbdd162558032be4fad8b08ce Mon Sep 17 00:00:00 2001 From: chase Date: Tue, 20 May 2025 02:05:24 -0400 Subject: [PATCH] Added vim bindings for ncmpcpp --- home.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 6c972b7..6139d94 100644 --- a/home.nix +++ b/home.nix @@ -172,7 +172,15 @@ ]; }; - programs.ncmpcpp.enable = true; + programs.ncmpcpp = { + enable = true; + bindings = [ + { key = "h"; command = "previous_column"; } + { key = "j"; command = "scroll_down"; } + { key = "k"; command = "scroll_up"; } + { key = "l"; command = "next_column"; } + ]; + }; programs.obs-studio.enable = true;