✨ 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
|
||||
./cava
|
||||
./curl
|
||||
./fish
|
||||
./gh
|
||||
./hyfetch
|
||||
./syncthing
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue