-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzshrc.antigen
More file actions
28 lines (19 loc) · 836 Bytes
/
zshrc.antigen
File metadata and controls
28 lines (19 loc) · 836 Bytes
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
ANTIGEN_RC=$HOME/.antigenrc
# source $HOME/dotfiles/zsh/antigen/antigen.zsh
# source /usr/local/share/antigen/antigen.zsh
source $HOME/antigen.zsh
if [[ ! -f $ANTIGEN_RC ]]; then
ln -s $HOME/dotfiles/antigenrc $ANTIGEN_RC
fi
antigen init $ANTIGEN_RC
# User configuration
for config_file ($HOME/dotfiles/zsh/*.zsh) source $config_file
[[ -e $HOME/.zshrc.conf ]] && source $HOME/.zshrc.conf
[[ -e $HOME/.zshrc.local ]] && source $HOME/.zshrc.local
[ -f $HOME/.fzf.zsh ] && source $HOME/.fzf.zsh
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# added by travis gem
[ -f /Users/jma/.travis/travis.sh ] && source /Users/jma/.travis/travis.sh