forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
executable file
·33 lines (23 loc) · 1000 Bytes
/
zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="simple"
DISABLE_AUTO_UPDATE="true"
plugins=(gitfast git-extras git-hubflow gitfast extract command-not-found sublime bundler brew gem rbates rake zsh-syntax-highlighting rbenv)
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
export PATH="/usr/local/bin:/usr/local/sbin:$PATH:$HOME/Library/Python/2.7/bin:/bin"
source $ZSH/oh-my-zsh.sh
#fpath=(/usr/local/share/zsh/site-functions $fpath)
source /usr/local/share/zsh/site-functions/go
# for Homebrew installed rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
# setup solarized dircolors
#if [ -e $HOME/.dircolors ]
#then
# eval `dircolors -b $HOME/.dircolors`
#sfi
# setup powerline
if [ -e $HOME/Library/Python/2.7/lib/python/site-packages/powerline/bindings/zsh/powerline.zsh ]
then
source $HOME/Library/Python/2.7/lib/python/site-packages/powerline/bindings/zsh/powerline.zsh
fi
export RBENV_ROOT=/usr/local/var/rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi