Get rid of fish-shell's greeting
This commit is contained in:
parent
37ae0fcdbb
commit
f4c7c3e1e2
|
@ -5,15 +5,22 @@
|
|||
./starship.nix
|
||||
];
|
||||
|
||||
# Fish shell
|
||||
|
||||
programs.fish.enable = true;
|
||||
programs.fish.shellAliases = {
|
||||
l = "ls -al";
|
||||
};
|
||||
# Disable greeting
|
||||
programs.fish.interactiveShellInit =
|
||||
"set -g fish_greeting";
|
||||
|
||||
# Eza - ls replacement
|
||||
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
};
|
||||
programs.fish.shellAliases = {
|
||||
l = "ls -al";
|
||||
};
|
||||
|
||||
# rlwrap config
|
||||
|
||||
|
|
Loading…
Reference in a new issue