Skip to content

Commit

Permalink
Update zshrc (#27)
Browse files Browse the repository at this point in the history
This fixes the anomoly where running `exa` doesn't show the current and parent directory, but `ls` does. As far as I can tell, this was happening as the `ls` alias was calling `exa` recursively — `exa` was calling the `exa` alias, which calls the `exa` alias, etc.
  • Loading branch information
simonward87 authored Aug 2, 2021
1 parent b8d9db1 commit e05be46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ setopt globDots


# Create Aliases
alias ls='exa -laFh --git'
alias ls='exa'
alias exa='exa -laFh --git'
alias trail='<<<${(F)path}'
alias ftrail='<<<${(F)fpath}'
Expand Down

0 comments on commit e05be46

Please sign in to comment.