2018-01-08 15:40:47 -05:00
|
|
|
export ZSH=${HOME}/.oh-my-zsh
|
2017-06-26 10:58:43 -04:00
|
|
|
|
2018-01-08 15:40:47 -05:00
|
|
|
ZSH_THEME="refined"
|
2017-06-26 10:58:43 -04:00
|
|
|
plugins=(tmux zsh-autosuggestions git git-extras github gitfast)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
source ~/.zsh_profile
|
|
|
|
|
|
|
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
|
|
|
|
|
|
|
export N_PREFIX="$HOME/n"; [[ :$PATH: == *":$N_PREFIX/bin:"* ]] || PATH+=":$N_PREFIX/bin" # Added by n-install (see http://git.io/n-install-repo).
|
2018-01-08 15:40:47 -05:00
|
|
|
|
|
|
|
# The next line updates PATH for the Google Cloud SDK.
|
|
|
|
if [ -f '/Users/wpcarro/Downloads/google-cloud-sdk/path.zsh.inc' ]; then source '/Users/wpcarro/Downloads/google-cloud-sdk/path.zsh.inc'; fi
|
|
|
|
|
|
|
|
# The next line enables shell command completion for gcloud.
|
|
|
|
if [ -f '/Users/wpcarro/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then source '/Users/wpcarro/Downloads/google-cloud-sdk/completion.zsh.inc'; fi
|