Last active
June 3, 2017 13:50
.zshrc - Oh-my-zsh settings
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
export ZSH=/Users/antoniwan/.oh-my-zsh | |
ZSH_THEME="robbyrussell" | |
ENABLE_CORRECTION="true" | |
COMPLETION_WAITING_DOTS="true" | |
plugins=(git) | |
# user configuration | |
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$PATH" | |
export PATH="$PATH:~/.composer/vendor/bin" | |
export PATH="$PATH:/Users/antoniwan/.composer/vendor/bin" | |
export PATH="/usr/local/sbin:$PATH" | |
source $ZSH/oh-my-zsh.sh | |
export LANG=en_US.UTF-8 | |
# ssh | |
export SSH_KEY_PATH="~/.ssh/id_rsa" | |
# aliases | |
# dev. tools | |
# finder | |
alias finderShowHidden='defaults write com.apple.finder AppleShowAllFiles TRUE' | |
alias finderHideHidden='defaults write com.apple.finder AppleShowAllFiles FALSE' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment