✨ feat(fish): Install fish + plugins
This commit is contained in:
parent
98b94a35d4
commit
4bfb04383c
2 changed files with 24 additions and 1 deletions
|
@ -33,6 +33,7 @@
|
||||||
./btop
|
./btop
|
||||||
./cava
|
./cava
|
||||||
./curl
|
./curl
|
||||||
|
./fish
|
||||||
./gh
|
./gh
|
||||||
./hyfetch
|
./hyfetch
|
||||||
./syncthing
|
./syncthing
|
||||||
|
|
|
@ -1,5 +1,27 @@
|
||||||
{...}: {
|
{pkgs, ...}: {
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
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;
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue