Skip to content

Instantly share code, notes, and snippets.

@cheeseonamonkey
Forked from akarzim/exa-aliases.zsh
Last active April 22, 2023 01:12
Show Gist options
  • Save cheeseonamonkey/ee5e8a89186274b7dfcfbb95cc3815ee to your computer and use it in GitHub Desktop.
Save cheeseonamonkey/ee5e8a89186274b7dfcfbb95cc3815ee to your computer and use it in GitHub Desktop.
Exa ZSH aliases
#modified these:
alias ls='exa --classify --icons --color-scale'
alias ll='exa --long --classify --icons --color-scale --no-user --no-permissions --no-time'
alias la='ll -a' # Lists human readable sizes, hidden files.
alias lm='la | "$PAGER"' # Lists human readable sizes, hidden files through pager.
alias lx='ll --sort=Extension' # Lists sorted by extension (GNU only).
alias lk='ll --sort=size -r' # Lists sorted by size, largest last.
alias lt='ll --sort=modified -r' # Lists sorted by date, most recent last.
#alias sl='ls' # I often screw this up.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment