forked from thoughtbot/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
51 lines (41 loc) · 1 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# zmodload zsh/zprof
source ~/antigen.zsh
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle git-flow
antigen bundle git-extras
#antigen bundle pyenv
if command -v pyenv >/dev/null; then
eval "$(pyenv init - zsh)"
eval "$(pyenv virtualenv-init -)"
fi
#antigen bundle rbenv
if command -v rbenv >/dev/null; then
eval "$(rbenv init - --no-rehash)"
fi
#antigen bundle nvm
antigen bundle lukechilds/zsh-nvm
antigen bundle osx
antigen bundle brew
antigen bundle screen
antigen bundle dircycle
antigen bundle encode64
antigen bundle cp
antigen bundle autojump
antigen bundle web-search
antigen bundle bundler
antigen bundle coffee
antigen bundle rails
antigen bundle rake
antigen bundle heroku
antigen bundle python
# Bundles from other repos
antigen bundle zsh-users/zsh-syntax-highlighting
antigen theme robbyrussell
antigen apply
# Local config
[[ -f ~/.zshrc.local ]] && source ~/.zshrc.local
# aliases
[[ -f ~/.aliases ]] && source ~/.aliases
#zprof