Merge pull request #2 from genebean/vim-zsh

Combine additions from work computer
This commit is contained in:
Gene Liverman 2017-10-15 16:25:19 -07:00 committed by GitHub
commit 49f150e385
2 changed files with 9 additions and 2 deletions

View file

@ -37,6 +37,7 @@ set termencoding=utf-8
set autoindent
set background=dark
set backspace=2
set expandtab
set fillchars+=stl:\ ,stlnc:\
set laststatus=2

View file

@ -81,6 +81,7 @@ export SSH_AUTH_SOCK=~/.gnupg/S.gpg-agent.ssh
#alias ls='ls -G'
alias sal='ssh-add -L'
alias sz='source ~/.zshrc'
alias st='/Applications/SourceTree.app/Contents/MacOS/SourceTree &'
alias ykey='pkill gpg-agent && source ~/.zshrc; ssh-add -L'
export EDITOR='vim'
@ -92,10 +93,15 @@ if [[ `uname` == 'Darwin' ]]; then
export PATH=$PATH:/usr/local/sbin
export PATH=$PATH:/Applications/Araxis\ Merge.app/Contents/Utilities
export PATH="/usr/local/opt/python/libexec/bin:$PATH"
eval '/usr/libexec/path_helper -s' > /dev/null
export PATH=$PATH:/usr/local/opt/node@6/bin
if [[ -f '/Applications/google-cloud-sdk' ]]; then
source /Applications/google-cloud-sdk/completion.zsh.inc
source /Applications/google-cloud-sdk/path.zsh.inc
fi
fi
# added by travis gem
[ -f ~/.travis/travis.sh ] && source ~/.travis/travis.sh || echo 'The travis gem is missing. After installing it run "echo y|travis" to create ~/.travis'
fi