Skip to content

Instantly share code, notes, and snippets.

@pstaender
Created August 4, 2021 13:58
Show Gist options
  • Save pstaender/89aec522c62c3f6d57eabec922d1750d to your computer and use it in GitHub Desktop.
Save pstaender/89aec522c62c3f6d57eabec922d1750d to your computer and use it in GitHub Desktop.
# alias cd to modern cd with auto ls
alias ls='exa -l --git --header'
function cd_and_ls {
cd $1 && ls
}
alias cd=cd_and_ls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment