From 1138aae3f58a66e9211588e25fb9185535004354 Mon Sep 17 00:00:00 2001 From: Sebastian Schulze Date: Wed, 25 Oct 2023 13:12:54 +0200 Subject: [PATCH] [nix] Give broot another try --- dot_config/nixpkgs/home.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/dot_config/nixpkgs/home.nix b/dot_config/nixpkgs/home.nix index bde4b0f..e859c7a 100644 --- a/dot_config/nixpkgs/home.nix +++ b/dot_config/nixpkgs/home.nix @@ -416,8 +416,17 @@ in ]; programs.broot = { enable = true; + enableBashIntegration = true; settings = { - modal = true; + verbs = [ + { key = "ctrl-j"; execution = ":line_down"; } + { key = "ctrl-k"; execution = ":line_up"; } + { key = "ctrl-l"; execution = ":panel_right"; } + { key = "ctrl-h"; execution = ":back"; } + { key = "ctrl-d"; execution = ":page_down"; } + { key = "ctrl-u"; execution = ":page_up"; } + + ]; skin = { default = "gray(1) None"; tree = "gray(7) None / gray(18) None";