From 59c32fb9f93cff3f39d8a5a47630aaa1e0eba79d Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Wed, 20 Dec 2023 16:09:36 -0400 Subject: [PATCH] Fixed shellInit again --- home/shell/fish/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/shell/fish/default.nix b/home/shell/fish/default.nix index 92b60cd..f7285c1 100644 --- a/home/shell/fish/default.nix +++ b/home/shell/fish/default.nix @@ -21,7 +21,7 @@ } ]; shellInit = lib.concatStringsSep "\n" [ - "bind \b backward-kill-word" + "bind -k backspace 'do something'" ]; }; }