feat(fish): Add neo
This commit is contained in:
parent
84ddc9e3d2
commit
ef23b7ddf0
1 changed files with 14 additions and 0 deletions
|
@ -1,7 +1,10 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
# general
|
||||||
babelfish
|
babelfish
|
||||||
|
|
||||||
|
# for extract()
|
||||||
gnutar
|
gnutar
|
||||||
bzip2
|
bzip2
|
||||||
bzip3
|
bzip3
|
||||||
|
@ -9,6 +12,9 @@
|
||||||
unzip
|
unzip
|
||||||
pax
|
pax
|
||||||
unrar-free
|
unrar-free
|
||||||
|
|
||||||
|
# shell goodies
|
||||||
|
neo
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
|
@ -106,6 +112,14 @@
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
neo = {
|
||||||
|
wraps = "neo";
|
||||||
|
body = # fish
|
||||||
|
''
|
||||||
|
command neo --charset=ascii $argv
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue