From 02bb345fd7ab09f0d5a0ff7c13f9552476f4f28b Mon Sep 17 00:00:00 2001 From: alexion Date: Thu, 23 Jul 2026 08:42:51 -0400 Subject: [PATCH] feat(fish): exclude .git from the lt tree alias The lt alias walks the tree with -a, pulling the noisy .git directory into every listing. Bake -I '.git' into it so the git internals are skipped by default; extra ignores can still be passed at call time. --- modules/fish/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish/fish.nix b/modules/fish/fish.nix index fd09158..05d34de 100644 --- a/modules/fish/fish.nix +++ b/modules/fish/fish.nix @@ -55,7 +55,7 @@ in ls = "eza -al --color=always --group-directories-first --icons=always"; la = "eza -a --color=always --group-directories-first --icons=always"; ll = "eza -l --color=always --group-directories-first --icons=always"; - lt = "eza -aT --color=always --group-directories-first --icons=always"; + lt = "eza -aT -I '.git' --color=always --group-directories-first --icons=always"; "l." = "eza -a | grep -e '^\\.'"; };