Skip to content

Instantly share code, notes, and snippets.

@o3bvv
Last active October 26, 2023 13:34
Show Gist options
  • Save o3bvv/ddcf779e7f9ae10073991e0a621bc1b2 to your computer and use it in GitHub Desktop.
Save o3bvv/ddcf779e7f9ae10073991e0a621bc1b2 to your computer and use it in GitHub Desktop.
exa aliases
alias l="exa -l -F --group-directories-first -b --no-permissions --git --no-user --no-time"
alias lz='l -s size -r'
alias lZ='l -s size'
alias lx='l -s ext'
alias ls='exa'
alias l1='ls -1'
alias ll="exa -l -F --group-directories-first -b --no-permissions --git --no-user --time-style=long-iso --changed"
alias llt="ll -s changed -r"
alias llT="ll -s changed"
alias llz="ll -s size -r"
alias llZ="ll -s size"
alias llx="ll -s ext"
alias la="exa -l -F --group-directories-first -b --time-style=long-iso --git -g --header --changed"
alias ldot='ll -d .*'
alias tree='exa --tree'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment