-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathantigenrc
32 lines (27 loc) · 963 Bytes
/
antigenrc
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
antigen use oh-my-zsh
# oh-my-zsh plugins
hash git 2>/dev/null && antigen bundle git
hash bundle 2>/dev/null && antigen bundle bundler
hash npm 2>/dev/null && antigen bundle npm
hash pip 2>/dev/null && antigen bundle pip
hash vagrant 2>/dev/null && antigen bundle vagrant
hash virtualenvwrapper.sh 2>/dev/null && antigen bundle virtualenvwrapper
hash mvn 2>/dev/null && antigen bundle mvn
hash rails 2>/dev/null && antigen bundle rails
antigen bundle unixorn/rake-completion.zshplugin
antigen bundle history-substring-search
# Non oh-my-zsh plugins
antigen bundle zsh-users/zsh-syntax-highlighting
# Platform dependant bundles
if [[ `uname` == 'Linux' ]]
then
antigen bundle command-not-found
elif [[ `uname` == 'Darwin' ]]
then
# Only enable brew plugin if brew exists
hash brew 2>/dev/null && antigen bundle brew
fi
# zsh theme
# if you fork this repo, change this to match your fork
antigen theme nathanmyles/Dotfiles .zsh-theme
antigen apply