Skip to content

Instantly share code, notes, and snippets.

@prometheanfire
Created January 19, 2023 04:10
Show Gist options
  • Save prometheanfire/5d5bd95591d53954e063fe583af36bf5 to your computer and use it in GitHub Desktop.
Save prometheanfire/5d5bd95591d53954e063fe583af36bf5 to your computer and use it in GitHub Desktop.
if /usr/bin/env which exa 1> /dev/null 2> /dev/null; then
alias gls='/bin/ls -p --color=always --time-style=long-iso --group-directories-first --quoting-style=literal'
alias ls='exa --time-style=long-iso --git --icons --group-directories-first'
else
alias ls='ls -p --color=always --time-style=long-iso --group-directories-first --quoting-style=literal'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment