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.
This commit is contained in:
2026-07-23 08:42:51 -04:00
parent a3e3e80c83
commit 02bb345fd7

View File

@@ -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 '^\\.'";
};