From 751251404b1276e8ff677ecab94a59b79213297b Mon Sep 17 00:00:00 2001 From: panotaka Date: Sun, 24 Dec 2023 10:41:38 -0400 Subject: [PATCH] Remove unused shellInit configuration --- home/shell/fish/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/home/shell/fish/default.nix b/home/shell/fish/default.nix index 1de4fa7..851f29e 100644 --- a/home/shell/fish/default.nix +++ b/home/shell/fish/default.nix @@ -1,8 +1,4 @@ -{ - pkgs, - lib, - ... -}: { +{pkgs, ...}: { home.packages = with pkgs; [ grc ]; @@ -20,8 +16,5 @@ src = pkgs.fishPlugins.autopair; } ]; - shellInit = lib.concatStringsSep "\n" [ - "bind -k backspace backward-kill-word" - ]; }; }