feat(fish): Add neo

This commit is contained in:
punkfairie 2024-11-14 19:13:54 -08:00
parent 84ddc9e3d2
commit ef23b7ddf0
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -1,7 +1,10 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# general
babelfish
# for extract()
gnutar
bzip2
bzip3
@ -9,6 +12,9 @@
unzip
pax
unrar-free
# shell goodies
neo
];
programs.fish = {
@ -106,6 +112,14 @@
end
'';
};
neo = {
wraps = "neo";
body = # fish
''
command neo --charset=ascii $argv
'';
};
};
};
}