Created
January 14, 2018 10:59
-
-
Save absk1317/32ecbbcffe41fcda04f0be044fc4aa53 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then | |
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" | |
fi | |
# Customize to your needs... | |
for config_file ($HOME/.yadr/zsh/*.zsh) source $config_file | |
test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh" | |
export EDITOR="subl -n -w" | |
export PATH="$HOME/.yarn/bin:$PATH" | |
export PATH="/usr/local/opt/opencv3/bin:$PATH" | |
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. | |
export PATH=$PATH:~/.fabric8/bin | |
export LC_CTYPE=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
# The next line updates PATH for the Google Cloud SDK. | |
if [ -f '/Users/abhishek1317/Desktop/study/sa/google-cloud-sdk/path.zsh.inc' ]; then source '/Users/abhishek1317/Desktop/study/sa/google-cloud-sdk/path.zsh.inc'; fi | |
# The next line enables shell command completion for gcloud. | |
if [ -f '/Users/abhishek1317/Desktop/study/sa/google-cloud-sdk/completion.zsh.inc' ]; then source '/Users/abhishek1317/Desktop/study/sa/google-cloud-sdk/completion.zsh.inc'; fi | |
export GOPATH=~/go | |
#export EDITOR=mvim -f --nomru -c "au VimLeave * !open -a iTerm" | |
#export GIT_EDITOR=mvim -f --nomru -c "au VimLeave * !open -a iTerm" | |
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. | |
export PATH="$PATH:$HOME/.rvm/bin" | |
export PATH="/usr/local/opt/python/libexec/bin:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment