Skip to content

Commit

Permalink
fix(zsh): exa => eza
Browse files Browse the repository at this point in the history
Just in-case they removed the alias
  • Loading branch information
edmundmiller committed Oct 22, 2023
1 parent 2d22048 commit aab096f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/zsh/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ alias jc='journalctl -xe'
alias sc=systemctl
alias ssc='sudo systemctl'

if command -v exa >/dev/null; then
alias exa="exa --group-directories-first --git";
alias l="exa -blF";
alias ll="exa -abghilmu";
if command -v eza >/dev/null; then
alias eza="eza --group-directories-first --git";
alias l="eza -blF";
alias ll="eza -abghilmu";
alias llm='ll --sort=modified'
alias la="LC_COLLATE=C exa -ablF";
alias tree='exa --tree'
alias la="LC_COLLATE=C eza -ablF";
alias tree='eza --tree'
fi

if (( $+commands[fasd] )); then
Expand Down

0 comments on commit aab096f

Please sign in to comment.