Merge pull request #71 from genebean/zshrc-update

Update zshrc
This commit is contained in:
Gene Liverman 2020-09-25 10:04:59 -04:00 committed by GitHub
commit e4a2a002c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,17 +55,20 @@ ZSH_CUSTOM=~/repos/customized-oh-my-zsh
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse) # Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup. # Add wisely, as too many plugins slow down shell startup.
plugins=(brew bundler gem git git-flow github history kube-ps1 kubectl osx pip python terraform vagrant) plugins=(brew bundler gem git git-flow github history kube-ps1 kubectl osx pip python terraform vagrant vscode)
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
# User configuration # User configuration
# make tab completions work right # make tab completions work right
autoload -Uz compinit && compinit #autoload -Uz compinit && compinit
[ -f ~/.private-env ] && source ~/.private-env || echo '~/.private-env is missing' [ -f ~/.private-env ] && source ~/.private-env || echo '~/.private-env is missing'
# Add GPG Suite binaries to the path:
export PATH=/usr/local/MacGPG2/bin:$PATH
# Start GPG agent # Start GPG agent
export GPG_TTY=$(tty) export GPG_TTY=$(tty)
export SSH_AUTH_SOCK=~/.gnupg/S.gpg-agent.ssh export SSH_AUTH_SOCK=~/.gnupg/S.gpg-agent.ssh
@ -86,7 +89,9 @@ gpg-connect-agent updatestartuptty /bye >/dev/null
alias biv='bundle install --path=vendor/bundle' alias biv='bundle install --path=vendor/bundle'
alias gbc='git branch --merged | command grep -vE "^(\*|\s*(master|develop|production)\s*$)" | command xargs -n 1 git branch -d' alias gbc='git branch --merged | command grep -vE "^(\*|\s*(master|develop|production)\s*$)" | command xargs -n 1 git branch -d'
alias gitextract='git log --pretty=email --patch-with-stat --reverse --full-index --binary --' alias gitextract='git log --pretty=email --patch-with-stat --reverse --full-index --binary --'
alias hubpr='hub pull-request --push --browse'
alias ogk='open -a GitKraken' alias ogk='open -a GitKraken'
alias pssh='ssh -o "UserKnownHostsFile /dev/null" -o "StrictHostKeyChecking no"'
alias sal='ssh-add -L' alias sal='ssh-add -L'
alias st='open -a SourceTree' alias st='open -a SourceTree'
alias sz='source ~/.zshrc' alias sz='source ~/.zshrc'
@ -137,7 +142,7 @@ if [[ `uname` == 'Darwin' ]]; then
[ -d '/Applications/VMware OVF Tool' ] && export PATH=$PATH:'/Applications/VMware OVF Tool' [ -d '/Applications/VMware OVF Tool' ] && export PATH=$PATH:'/Applications/VMware OVF Tool'
# optional additions from homebrew # optional additions from homebrew
[ -d "/usr/local/opt/node@10/bin" ] && export PATH="/usr/local/opt/node@10/bin:$PATH" [ -d "/usr/local/opt/node@12/bin" ] && export PATH="/usr/local/opt/node@12/bin:$PATH"
[ -d /usr/local/opt/qt/bin ] && export PATH=$PATH:/usr/local/opt/qt/bin [ -d /usr/local/opt/qt/bin ] && export PATH=$PATH:/usr/local/opt/qt/bin
# use homebrew's ruby # use homebrew's ruby
@ -150,6 +155,9 @@ if [[ `uname` == 'Darwin' ]]; then
GEMBIN="$(gem environment gemdir)/bin" GEMBIN="$(gem environment gemdir)/bin"
export PATH=$PATH:$GEMBIN export PATH=$PATH:$GEMBIN
glcoud_zsh_path='/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc'
[ -f $glcoud_zsh_path ] && source $glcoud_zsh_path
gcloud_zsh_completions='/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc' gcloud_zsh_completions='/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc'
[ -f $gcloud_zsh_completions ] && source $gcloud_zsh_completions [ -f $gcloud_zsh_completions ] && source $gcloud_zsh_completions
@ -169,3 +177,7 @@ if [[ `uname` == 'Darwin' ]]; then
export OPENFAAS_PREFIX="genebean" export OPENFAAS_PREFIX="genebean"
fi fi
# added by travis gem
[ ! -s /Users/gene/.travis/travis.sh ] || source /Users/gene/.travis/travis.sh