diff --git a/home/shell/fish/default.nix b/home/shell/fish/default.nix index 613e103..b383fb3 100644 --- a/home/shell/fish/default.nix +++ b/home/shell/fish/default.nix @@ -1,4 +1,8 @@ -{pkgs, ...}: { +{ + pkgs, + lib, + ... +}: { home.packages = with pkgs; [ grc ]; @@ -7,11 +11,20 @@ enable = true; plugins = [ - # Enable a plugin (here grc for colorized command output) from nixpkgs { name = "grc"; src = pkgs.fishPlugins.grc.src; } + { + name = "autopair"; + src = pkgs.fishPlugins.autopair; + } + ]; + shellInit = lib.concatStringsSep "\n" [ + "bind \b backward-kill-word" + ]; + interactiveShellInit = lib.concatStringsSep "\n" [ + "neofetch" ]; }; }