This repository is a directory for ZSH plugins and themes supported by antigen.
You are welcome to submit Pull Requests for more plugins and themes.
- Install antigen as exlained here.
- Setup
.zshrc
file as explained below. - Add to the
.zshrc
file any plugin and theme you wish to use.
The usage should be very familiar to you if you use Vundle. A typical .zshrc
might look like this:
source /path-to-antigen-clone/antigen.zsh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle heroku
antigen bundle pip
antigen bundle lein
antigen bundle command-not-found
# Syntax highlighting bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
antigen theme robbyrussell
# Tell antigen that you're done.
antigen apply
- zsh-syntax-highlighting: antigen bundle zsh-users/zsh-syntax-highlighting
- Oh-My-Zsh plugins: antigen bundle [plugin name]
- Oh-My-Zsh themes: antigen theme [theme name]