move shell aliases into fish.nix

This commit is contained in:
Emile Clark-Boman 2025-08-31 15:05:32 +10:00
parent af62453ef7
commit 91f1033c9e

View file

@ -28,7 +28,19 @@
end
set -g fish_greeting (rand_greet)
'';
shellAliases = {
brip = "batgrep"; # bat + ripgrep
man = "batman"; # bat + man
ls = "eza --color=auto";
l = "eza -Alh --color=auto --icons=auto";
ll = "eza -lh --color=auto --icons=auto";
li = "eza --color=auto --git-ignore";
};
plugins = [
{
name = "grc";