feat(shell): gazorby/fish-exa

Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
This commit is contained in:
2025-02-17 12:19:13 +02:00
parent 894ec12fd8
commit 8c015ac251
86 changed files with 435 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
function exa_git -d "Use exa and its git options if in a git repo"
if git rev-parse --is-inside-work-tree &>/dev/null
$__FISH_EXA_BINARY $EXA_STANDARD_OPTIONS {$EXA_LL_OPTIONS} --git $argv
else
$__FISH_EXA_BINARY $EXA_STANDARD_OPTIONS {$EXA_LL_OPTIONS} $argv
end
end