feat(fish): Install fish + plugins

This commit is contained in:
punkfairie 2024-10-28 20:01:16 -07:00
parent 98b94a35d4
commit 4bfb04383c
2 changed files with 24 additions and 1 deletions

View file

@ -33,6 +33,7 @@
./btop
./cava
./curl
./fish
./gh
./hyfetch
./syncthing

View file

@ -1,5 +1,27 @@
{...}: {
{pkgs, ...}: {
programs.fish = {
enable = true;
useBabelfish = true;
preferAbbrs = true;
plugins = with pkgs.fishPlugins; [
{
name = "z";
src = z;
}
{
name = "Puffer Fish";
src = puffer;
}
{
name = "Sponge";
src = sponge;
}
{
name = "autopair.fish";
src = autopair;
}
];
};
}