✨ feat(fish): Fish improvements
This commit is contained in:
parent
6f1f673ff5
commit
aad55e3a38
1 changed files with 10 additions and 1 deletions
|
@ -1,8 +1,11 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
babelfish
|
||||||
|
];
|
||||||
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
useBabelfish = true;
|
|
||||||
preferAbbrs = true;
|
preferAbbrs = true;
|
||||||
|
|
||||||
plugins = with pkgs.fishPlugins; [
|
plugins = with pkgs.fishPlugins; [
|
||||||
|
@ -24,4 +27,10 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.zoxide = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
options = ["--cmd cd"];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue