From 91f1033c9e891a6425c8b0de07df22acd24f5527 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sun, 31 Aug 2025 15:05:32 +1000 Subject: [PATCH] move shell aliases into fish.nix --- homes/modules/fish.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/homes/modules/fish.nix b/homes/modules/fish.nix index eaca566..51a40f4 100755 --- a/homes/modules/fish.nix +++ b/homes/modules/fish.nix @@ -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";