zsh, fish: replace exa with eza
This commit is contained in:
parent
effa97aee2
commit
4ffd2b4cb9
2 changed files with 3 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue