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:
@@ -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 '^\\.'";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user