1
0
Fork 0

zsh, fish: replace exa with eza

This commit is contained in:
Von Random 2023-09-14 19:35:13 +03:00
parent effa97aee2
commit 4ffd2b4cb9
2 changed files with 3 additions and 7 deletions

View file

@ -1,7 +1,3 @@
function ls
set -l i
if test -n "$WEZTERM_PANE"
set i '--icons'
end
command exa $i --group-directories-first $argv
command eza --icons --group-directories-first $argv
end

View file

@ -77,8 +77,8 @@ else
gdf() { gdiff $@ }
fi
if testbin exa; then
ls() { command exa --group-directories-first $@ }
if testbin eza; then
ls() { command eza --icons --group-directories-first $@ }
ll() { ls -alg $@ }
ld() { ls -dlg $@ }
else