flake/home/fish.nix

24 lines
459 B
Nix

{
programs.fish = {
enable = true;
interactiveShellInit = ''
set -g fish_greeting
'';
shellAliases = {
c = "code .";
l = "ls -lah";
ll = "eza -la -F --icons --git --group-directories-first --git";
free = "free -h";
df = "df -h";
du = "du -h";
lg = "lazygit";
};
functions = {
gitu = ''
git add --all
git commit -m "$argv"
git push
'';
};
};
}