Skip to content

Instantly share code, notes, and snippets.

@p-geon
Created August 13, 2021 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save p-geon/43819cfd9fab31817fa6dfe9d7bef832 to your computer and use it in GitHub Desktop.
Save p-geon/43819cfd9fab31817fa6dfe9d7bef832 to your computer and use it in GitHub Desktop.
echo "[loading] ~/.zprofile"
# =========================================
## hook command: cd -> cd + ls
cdls ()
{
\cd "$@" && ls
}
# cat as ccat
colorcat ()
{
\ccat "$@" && echo ""
}
alias cd="cdls"
alias cat="colorcat"
eval "$(/opt/homebrew/bin/brew shellenv)"
echo "[loaded] ~/.zprofile"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment