Skip to content

Commit

Permalink
eza
Browse files Browse the repository at this point in the history
  • Loading branch information
lingrino committed Apr 8, 2024
1 parent a1bd1ac commit 5440834
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion home/private_dot_Brewfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ brew 'coreutils'
brew 'docker-credential-helper-ecr'
brew 'duf'
brew 'dust'
brew 'exa'
brew 'eza'
brew 'fd'
brew 'fzf'
brew 'gh'
Expand Down
16 changes: 8 additions & 8 deletions home/private_dot_sources.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -68,25 +68,25 @@ e() {
}

################################
### exa ###
### eza ###
################################
if exa &>/dev/null; then
if eza &>/dev/null; then
# List all
alias l="exa -abghl"
alias la="exa -abghl"
alias l="eza -abghl"
alias la="eza -abghl"

# List visible in table
alias ll="exa -bghl"
alias ll="eza -bghl"

# Normal ls
alias ls="exa"
alias ls="eza"

# List tree with optional depth
lt() {
if [ -z "$1" ]; then
exa -bghlT
eza -bghlT
else
exa -bghlT -L "$1"
eza -bghlT -L "$1"
fi
}
fi
Expand Down

0 comments on commit 5440834

Please sign in to comment.