Created
July 20, 2021 15:22
-
-
Save maxmckenzie/0d5ee0fcc34e3bcef5efa109dbd80339 to your computer and use it in GitHub Desktop.
zsh config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Theme | |
ZSH_THEME="robbyrussell" | |
# PATH exports | |
PATH=$PATH:/usr/local/bin/; export PATH | |
export PATH=/usr/local/share/npm/bin:$PATH | |
export ZSH="/Users/xamkcm/.oh-my-zsh" | |
# Alias's for git | |
alias gs='git status' | |
alias gaa='git add .' | |
alias gpsh='git push' | |
alias gp='git pull' | |
alias gfo="git fetch origin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment