mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-21 18:19:56 +01:00
Move from exa to eza
This commit is contained in:
parent
ff8d4a638d
commit
597bb08e39
@ -11,9 +11,9 @@ elif [[ $platform == 'macOS' ]]; then
|
|||||||
alias bls='/bin/ls -lahG'
|
alias bls='/bin/ls -lahG'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Better exa
|
# Better eza
|
||||||
if [[ -x $(which exa) ]]; then
|
if [[ -x $(which eza) ]]; then
|
||||||
alias exa='pwd; exa --long --all --all --group-directories-first --git --group'
|
alias eza='pwd; eza --long --all --all --group-directories-first --git --group'
|
||||||
# --all (2x) to show `.` and `..` directories as well
|
# --all (2x) to show `.` and `..` directories as well
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
4
zsh/env
4
zsh/env
@ -13,8 +13,8 @@ export EDITOR="nano"
|
|||||||
|
|
||||||
# set `ll` command - b(etter)ls per default
|
# set `ll` command - b(etter)ls per default
|
||||||
alias ll=bls
|
alias ll=bls
|
||||||
if test -f "$homebrew_path/exa"; then
|
if test -f "$homebrew_path/eza"; then
|
||||||
alias ll=exa
|
alias ll=eza
|
||||||
fi
|
fi
|
||||||
if test -f "$homebrew_path/lsd"; then
|
if test -f "$homebrew_path/lsd"; then
|
||||||
alias ll=lsd
|
alias ll=lsd
|
||||||
|
Loading…
Reference in New Issue
Block a user