From 54952923f3fe4fe8ea170f9363f528ad848b502c Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Tue, 28 Oct 2025 09:06:40 +0100 Subject: [PATCH] fish: add ctrl-space shortcut for zi --- homes/julian/features/fish/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/homes/julian/features/fish/default.nix b/homes/julian/features/fish/default.nix index 295d021..8e91ba8 100644 --- a/homes/julian/features/fish/default.nix +++ b/homes/julian/features/fish/default.nix @@ -47,6 +47,10 @@ with lib; { end nix shell $args ''; + fish_user_key_bindings = '' + bind ctrl-space 'zi; commandline -f repaint' + bind -M insert ctrl-space 'zi; commandline -f repaint' + ''; }; }; }