-
Notifications
You must be signed in to change notification settings - Fork 2
/
antigenrc
62 lines (49 loc) · 1.3 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Load the oh-my-zsh's library
antigen use oh-my-zsh
antigen bundle git
antigen bundle git-extras
antigen bundle tmuxinator
antigen bundle command-not-found
antigen bundle tmux
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-history-substring-search
antigen bundle rupa/z
antigen bundle djui/alias-tips
# For SSH, starting ssh-agent is annoying
# antigen bundle ssh-agent
# Develop
# antigen bundle vagrant
# antigen bundle github
# Ruby
antigen bundle rbenv
# Node Plugins
# antigen bundle coffee
# antigen bundle node
antigen bundle npm
# antigen bundle nvm
# PHP
# antigen bundle laravel
# antigen bundle laravel5
# OS specific plugins
if [[ `uname` = 'Darwin' ]]; then
antigen bundle brew
antigen bundle brew-cask
antigen bundle gem
antigen bundle osx
elif [[ `uname` = 'Linux' ]]; then
# None so far...
elif [[ `uname` = 'Cygwin' ]]; then
antigen bundle cygwin
fi
# Load the theme
# antigen theme steeef
# antigen theme jdavis/zsh-files themes/jdavis
# theme pure
#antigen bundle mafredri/zsh-async
#antigen bundle sindresorhus/pure
# theme spaceship
antigen theme https://github.com/denysdovhan/spaceship-zsh-theme spaceship
# Tell antigen that you're done
antigen apply