Blame view

README.mkd 16.3 KB
b84833b4c   Shrikant Sharat   Add readme.
1
2
3
4
5
  # Antigen
  
  Antigen is a small set of functions that help you easily manage your shell (zsh)
  plugins, called bundles. The concept is pretty much the same as bundles in a
  typical vim+pathogen setup. Antigen is to zsh, what [Vundle][] is to vim.
015b9e5e9   Shrikant Sharat   Pronouns, please.
6
7
8
9
  Please note that this is a very new project and can be considered beta at best.
  That said, I am using antigen full time now on my work machine. Also, please
  read the commit comments of the changesets when you pull a new version of
  antigen.
e1bf049d8   Shrikant Sharat   Add alpha notice ...
10

ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
11
  ## Show off
8f0e534f1   Shrikant Sharat   Added 'Show off' ...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  
  > Enough talk. Let's fight!
  >   -- Po, Kung-fu Panda.
  
  You're going to experience antigen right in your open shell. No `.zshrc`
  tweaking and reading the rest of this documentation. Kinda like an ice-cream
  sample, if you will.
  
  Get and load antigen.
  
      curl https://raw.github.com/zsh-users/antigen/master/antigen.zsh > antigen.zsh
      source antigen.zsh
  
  There. You now have all the antigen goodies. Let's try install some plugins. How
b36de9bb3   Shrikant Sharat   Add links in READ...
26
27
  about some color to start with. Get the [syntax highlighting plugin][] by
  running
8f0e534f1   Shrikant Sharat   Added 'Show off' ...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  
      antigen-bundle zsh-users/zsh-syntax-highlighting
  
  Now let it do its thing and once its done and you're back at your prompt, try
  and type a command. See that? Colors!
  
  So, you do git? ruby? git and ruby? There are lots of awesome plugins over at
  oh-my-zsh. Treat yourself to some.
  
      antigen-bundle robbyrussell/oh-my-zsh plugins/ruby
      antigen-bundle robbyrussell/oh-my-zsh plugins/git
  
  There are lots of plugins out there in the wild and people are writing zsh
  utilities as small scripts all the time. Antigen is compatible with all of them.
  The plugins and scripts don't need any special handling to be compatible with
  antigen.
3e16c4709   Shrikant Sharat   Add autoenv as an...
44
45
46
47
48
49
50
  Another example, [kennethreitz's autoenv](autoenv). Just a bundle command away.
  
      antigen-bundle kennethreitz/autoenv
  
  And boom! you have all the autoenv goodness. Just remember how you used to do
  these before antigen, clone it, modify your bashrc to source it, load a new
  terminal, all just to test it out. Duh!
8f0e534f1   Shrikant Sharat   Added 'Show off' ...
51
52
53
54
55
56
57
58
59
  The side effect of this is that you can tell antigen to grab just about anything
  from anyone's `dotfiles` repo, as long as it is in a directory under any repo on
  github.
  
  And themes? How would you like a fancy new prompt for yourself?
  
      antigen-theme funky
  
  No? Not your taste? There are many themes available to you, check out the
b36de9bb3   Shrikant Sharat   Add links in READ...
60
  oh-my-zsh's [page on themes][]. (You can currently only install themes from
8f0e534f1   Shrikant Sharat   Added 'Show off' ...
61
62
63
64
65
66
67
68
69
  robbyrussell's, i.e., the canonical oh-my-zsh repo).
  
  Note: Many of those plugins and especially themes, assume you have the core
  library of oh-my-zsh loaded. So, if you want to experiment further, issue a
  
      antigen-lib
  
  and continue until you're tired. At which point you can come back to this page
  ;)
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
70
  ## Usage
8f0e534f1   Shrikant Sharat   Added 'Show off' ...
71
72
73
  
  So, now that you're here, I'll assume you are convinced and want antigen running
  your shell all the time. Sweet. Let's do it.
b84833b4c   Shrikant Sharat   Add readme.
74

3c698aac0   Shrikant Sharat   Add information o...
75
76
77
78
  First, clone this repo, probably as a submodule if you have your dotfiles in a
  git repo,
  
      git clone https://github.com/sharat87/antigen.git
b84833b4c   Shrikant Sharat   Add readme.
79
80
  The usage should be very familiar to you if you use Vundle. A typical `.zshrc`
  might look like this
3c698aac0   Shrikant Sharat   Add information o...
81
      source /path-to-antigen-clone/antigen.zsh
b84833b4c   Shrikant Sharat   Add readme.
82
83
  
      # Load the oh-my-zsh's library.
de8d00ed4   Shrikant Sharat   Use the new comma...
84
      antigen-lib
b84833b4c   Shrikant Sharat   Add readme.
85
86
  
      # Bundles from the default repo (robbyrussell's oh-my-zsh).
de8d00ed4   Shrikant Sharat   Use the new comma...
87
88
89
90
91
      antigen-bundle git
      antigen-bundle heroku
      antigen-bundle pip
      antigen-bundle lein
      antigen-bundle command-not-found
b84833b4c   Shrikant Sharat   Add readme.
92
93
  
      # Syntax highlighting bundle.
de8d00ed4   Shrikant Sharat   Use the new comma...
94
      antigen-bundle zsh-users/zsh-syntax-highlighting
b84833b4c   Shrikant Sharat   Add readme.
95
96
  
      # Load the theme.
de8d00ed4   Shrikant Sharat   Use the new comma...
97
      antigen-theme robbyrussell
b84833b4c   Shrikant Sharat   Add readme.
98

1af74ea9e   Shrikant Sharat   Load completions ...
99
      # Tell antigen that you're done.
de8d00ed4   Shrikant Sharat   Use the new comma...
100
      antigen-apply
1af74ea9e   Shrikant Sharat   Load completions ...
101

7ba3548fd   Shrikant Sharat   Updated README wi...
102
103
  Open your zsh with this zshrc and you should see all the bundles you defined
  here, getting installed. Once its done, you are ready to roll. The complete
de8d00ed4   Shrikant Sharat   Use the new comma...
104
  syntax for the `antigen-bundle` command is discussed further down on this page.
b84833b4c   Shrikant Sharat   Add readme.
105

ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
106
  ## Motivation
b84833b4c   Shrikant Sharat   Add readme.
107
108
109
110
111
  
  If you use zsh and [oh-my-zsh][], you know that having many different plugins
  that are developed by many different authors in a single (sub)repo is not a very
  easy to maintain. There are some really fantastic plugins and utilities in
  oh-my-zsh, but having them all in a single repo doesn't really scale well. And I
7ba3548fd   Shrikant Sharat   Updated README wi...
112
  admire robbyrussell's efforts for reviewing and merging the gigantic number of
b84833b4c   Shrikant Sharat   Add readme.
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  pull requests the project gets. It needs a better way of plugin management.
  
  This was discussed on [a][1] [few][2] [issues][3], but it doesn't look like
  there was any progress made. So, I'm trying to start this off with antigen,
  hoping to better this situation. Please note that I'm by no means a zsh or any
  shell script expert (far from it).
  
  [1]: https://github.com/robbyrussell/oh-my-zsh/issues/465
  [2]: https://github.com/robbyrussell/oh-my-zsh/issues/377
  [3]: https://github.com/robbyrussell/oh-my-zsh/issues/1014
  
  Inspired by vundle, antigen can pull oh-my-zsh style plugins from various github
  repositories. You are not limited to use plugins from the oh-my-zsh repository
  only and you don't need to maintain your own fork and pull from upstream every
  now and then.
  
  Antigen also lets you switch the prompt theme with one command, just like that
  
      bundle-theme candy
  
  and your prompt is changed, just for this session of course.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
134
  ## Commands
b84833b4c   Shrikant Sharat   Add readme.
135

4a1cecfff   Shrikant Sharat   Add notes about a...
136
137
138
139
  The following are the commands provided by antigen. Note that the `-` in the
  following commands is kind of optional. You can write `antigen-bundle ...` as
  `antigen bundle` and get away with it. For more details see the help on
  `antigen` command further down in this section.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
140
  ### antigen-bundle
b84833b4c   Shrikant Sharat   Add readme.
141

7ba3548fd   Shrikant Sharat   Updated README wi...
142
143
  This command tells antigen to install (if not already installed) and load the
  given plugin. The simplest usage follows the following syntax.
b84833b4c   Shrikant Sharat   Add readme.
144

2fe4683b3   Shrikant Sharat   Update README wit...
145
      antigen-bundle <plugin-name>
7e0aca7ce   Shrikant Sharat   Add notes about b...
146

7ba3548fd   Shrikant Sharat   Updated README wi...
147
  This will install the `plugins/<name>` directory from [robbyrussell's
7e0aca7ce   Shrikant Sharat   Add notes about b...
148
  oh-my-zsh][oh-my-zsh] (can be changed by setting `ANTIGEN_DEFAULT_REPO_URL`).
2fe4683b3   Shrikant Sharat   Update README wit...
149
150
  However, the above is just syntax sugar for the extended syntax of the
  `antigen-bundle` command.
7e0aca7ce   Shrikant Sharat   Add notes about b...
151

2fe4683b3   Shrikant Sharat   Update README wit...
152
      antigen-bundle [<url> [<loc>]]
b84833b4c   Shrikant Sharat   Add readme.
153
154
  
  where `<url>` is the repository url and it defaults to [robbyrussell's
7ba3548fd   Shrikant Sharat   Updated README wi...
155
156
157
158
159
  oh-my-zsh][oh-my-zsh] repo (can be changed by setting `ANTIGEN_DEFAULT_REPO_URL`
  discussed further down). `<loc>` is the path under this repository which has the
  zsh plugin. This is typically the directory that contains a `*.plugin.zsh` file,
  but it could contain a completion file or just many `*.zsh` files to be sourced.
  `<loc>` defaults to `/`, which indicates the repository itself is a plugin.
b84833b4c   Shrikant Sharat   Add readme.
160
161
  
  An example invocation would be
2fe4683b3   Shrikant Sharat   Update README wit...
162
163
164
      # The following is the same as `antigen-bundle ant`. But for demonstration
      # purposes, we use the extended syntax here.
      antigen-bundle https://github.com/robbyrussell/oh-my-zsh.git plugins/ant
b84833b4c   Shrikant Sharat   Add readme.
165

7ba3548fd   Shrikant Sharat   Updated README wi...
166
167
  This would install the ant plugin from robbyrussell's oh-my-zsh repo. Of course,
  github url's can be shortened.
b84833b4c   Shrikant Sharat   Add readme.
168

2fe4683b3   Shrikant Sharat   Update README wit...
169
      antigen-bundle robbyrussell/oh-my-zsh plugins/ant
b84833b4c   Shrikant Sharat   Add readme.
170

7ba3548fd   Shrikant Sharat   Updated README wi...
171
172
  And since this repo is the default, even that isn't necessary. But we can't
  specify the `loc` without giving the first argument.
b84833b4c   Shrikant Sharat   Add readme.
173

2fe4683b3   Shrikant Sharat   Update README wit...
174
175
  For this and a few other reasons, `antigen-bundle` also supports a simple
  keyword argument syntax, using which we can rewrite the above as
b84833b4c   Shrikant Sharat   Add readme.
176

2fe4683b3   Shrikant Sharat   Update README wit...
177
      antigen-bundle --loc=plugins/ant
b84833b4c   Shrikant Sharat   Add readme.
178

7ba3548fd   Shrikant Sharat   Updated README wi...
179
180
  Which picks up the default for the `url` argument, and uses the `loc` given to
  it.
7e0aca7ce   Shrikant Sharat   Add notes about b...
181

7ba3548fd   Shrikant Sharat   Updated README wi...
182
183
  *Note* that you can mix and match positional and keyword arguments. But you
  can't have positional arguments after keyword arguments.
b84833b4c   Shrikant Sharat   Add readme.
184

2fe4683b3   Shrikant Sharat   Update README wit...
185
      antigen-bundle robbyrussell/oh-my-zsh --loc=plugins/ant
b84833b4c   Shrikant Sharat   Add readme.
186
187
188
  
  And keyword arguments don't care about the order in which the arguments are
  specified. The following is perfectly valid.
2fe4683b3   Shrikant Sharat   Update README wit...
189
      antigen-bundle --loc=plugins/ant --url=robbyrussell/oh-my-zsh
5e26a8e26   Shrikant Sharat   Docs on using inl...
190

2fe4683b3   Shrikant Sharat   Update README wit...
191
192
193
194
  In addition to the above discussed arguments, `antigen-bundle` also takes a
  `btype` keyword-only argument, that is used internally. You shouldn't be
  concerned with this argument, its only used internally and will probably go away
  in the future.  It indicates whether the bundle is a theme or a simple plugin.
5e26a8e26   Shrikant Sharat   Docs on using inl...
195

2fe4683b3   Shrikant Sharat   Update README wit...
196
197
198
199
  You can use this `antigen-bundle` command not just from your `.zshrc`, but also
  from your shell environment. This allows you to install plugins on the fly and
  try them out. Of course if you want a bundle to be available every time you open
  a shell, put it in your `.zshrc`.
5e26a8e26   Shrikant Sharat   Docs on using inl...
200

4129490ce   Shrikant Sharat   Add --branch note...
201
  Other keyword-only arguments accepted:
e7bf36002   Shrikant Sharat   Formatting in REA...
202
  `branch` &mdash; Specify the branch of the git repo to be used for this bundle.
4129490ce   Shrikant Sharat   Add --branch note...
203
204
205
206
  Please note that if you specify two plugins to be loaded from the same git repo,
  but different branches, then two separate clones of this repo will be
  maintained. This is a small implementation detail and shouldn't influence you in
  any way.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
207
  ### antigen-bundles
78ea5a9f4   Shrikant Sharat   Add notes on anti...
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
  
  If you have a fair number of bundles, using the `antigen-bundle` command can
  look cumbersome. You can use the `antigen-bundles` command to *bulk* define
  bundles instead of individual calls to `antigen-bundle`.
  
  Usage is pretty straightforward. Just pipe the bundle specifications, just as
  you would give to the `antigen-bundle` command, one per line, into the
  `antigen-bundles` command. The easiest way to do this, is using the heredoc
  syntax.
  
      antigen-bundles <<EOF
      # Guess what to install when running an unknown command.
      command-not-found
  
      # The heroku tool helper plugin.
      heroku
  
      EOF
  
  This is equivalent to
  
      antigen-bundle command-not-found
      antigen-bundle heroku
  
  Of course, as you can see, from the lines piped to `antigen-bundles`, empty
  lines and those starting with a `#` are ignored. The rest are passed to
  `antigen-bundle` without any quoting rules applied. They are actually `eval`-ed
  with the `antigen-bundle` command. See the source if you want to really
  understand how it works. Its a very small function.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
237
  ### antigen-update
5e26a8e26   Shrikant Sharat   Docs on using inl...
238

7ba3548fd   Shrikant Sharat   Updated README wi...
239
240
  This is something you might not want to put in your `.zshrc`. Instead, run it
  occasionally to update all your plugins. It doesn't take any arguments.
5e26a8e26   Shrikant Sharat   Docs on using inl...
241

2fe4683b3   Shrikant Sharat   Update README wit...
242
      antigen-update
5e26a8e26   Shrikant Sharat   Docs on using inl...
243

7ba3548fd   Shrikant Sharat   Updated README wi...
244
245
246
247
248
  Please note that the updates that are downloaded are not immediately available.
  You have to open a new shell to be able to see the changes. This is a limitation
  by design since reloading all the plugins *might* have some nasty side effects
  that may not be immediately apparent. Let's just say it can make your shell act
  real quirky.
b84833b4c   Shrikant Sharat   Add readme.
249

2fe4683b3   Shrikant Sharat   Update README wit...
250
251
  **Please note**: This command is not for updating *antigen* itself. Its for
  updating the bundles you are using with antigen.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
252
  ### antigen-list
de2f0c562   Shrikant Sharat   Add a note in REA...
253

7ba3548fd   Shrikant Sharat   Updated README wi...
254
255
  Use this command to list out the currently *loaded* plugins. Keep in mind that
  this includes any bundles installed on-the-fly.
de2f0c562   Shrikant Sharat   Add a note in REA...
256

7ba3548fd   Shrikant Sharat   Updated README wi...
257
258
  Takes no arguments. Gives out the repo url and the plugin's location under the
  repo.
de2f0c562   Shrikant Sharat   Add a note in REA...
259

ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
260
  ### antigen-cleanup
b84833b4c   Shrikant Sharat   Add readme.
261

7ba3548fd   Shrikant Sharat   Updated README wi...
262
263
264
  Used to clean up the clones of repos which are not used by any plugins. It takes
  no arguments. When this is run, it lists out the repo-clones that are available
  but are not used by any plugin *currently loaded*.
b84833b4c   Shrikant Sharat   Add readme.
265
266
267
  
  This command currently cannot run in a non-interactive mode. So it won't be very
  pleasant to use it in your `.zshrc`.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
268
  ### antigen-lib
b84833b4c   Shrikant Sharat   Add readme.
269

7ba3548fd   Shrikant Sharat   Updated README wi...
270
  This is a shortcut to
2fe4683b3   Shrikant Sharat   Update README wit...
271
      antigen-bundle --loc=lib
7ba3548fd   Shrikant Sharat   Updated README wi...
272
273
274
275
  
  So, it basically installs the oh-my-zsh's library as a bundle. Please note that
  this assumes that the `ANTIGEN_DEFAULT_REPO_URL` is set to the oh-my-zsh repo or
  a fork of that repo. If you want to specify the `url` too, then you can't use
2fe4683b3   Shrikant Sharat   Update README wit...
276
277
  the `antigen-lib` short cut. You have to do that directly with the
  `antigen-bundle` command.
7ba3548fd   Shrikant Sharat   Updated README wi...
278
279
280
281
282
  
  This is present only for legacy reasons and *might* (or might not) be removed in
  the future.
  
  Use
b84833b4c   Shrikant Sharat   Add readme.
283

2fe4683b3   Shrikant Sharat   Update README wit...
284
      antigen-lib
b84833b4c   Shrikant Sharat   Add readme.
285

2fe4683b3   Shrikant Sharat   Update README wit...
286
287
  in  your `.zshrc`, before any `antigen-bundle` declarations. It takes no
  arguments.
b84833b4c   Shrikant Sharat   Add readme.
288

ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
289
  ### antigen-theme
b84833b4c   Shrikant Sharat   Add readme.
290
291
292
  
  Used for switching the prompt theme. Invoke it with the name of the theme you
  want to use.
2fe4683b3   Shrikant Sharat   Update README wit...
293
      antigen-theme fox
b84833b4c   Shrikant Sharat   Add readme.
294
295
296
  
  Currently, themes are pulled from robbyrussell's oh-my-zsh repo, but it will
  support getting themes from other repos as well in the future.
7ba3548fd   Shrikant Sharat   Updated README wi...
297
298
  You can use this command to change your theme on the fly in your shell. Go on,
  try out a few themes in your shell before you set it in your `.zshrc`.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
299
  ### antigen-apply
1af74ea9e   Shrikant Sharat   Load completions ...
300
301
302
303
304
305
306
307
308
309
310
311
  
  You have to add this command after defining all bundles you need, in your zshrc.
  The completions defined by your bundles will be loaded at this step.
  
  It is possible to load completions as and when a bundle is specified with the
  bundle command, in which case this command would not be necessary. But loading
  the completions is a time-consuming process and your shell will start noticeably
  slow if you have a good number of bundle specifications.
  
  However, if you're a zsh expert and can suggest a way so that this would not be
  necessary, I am very interested in discussing it. Please open up an issue with
  your details. Thanks.
4a1cecfff   Shrikant Sharat   Add notes about a...
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
  ### antigen-help
  
  This exists so that there can be some help right in the command line. Currently
  it doesn't provide much help other than redirecting you to the project page for
  documentation. It is intended to provide more meaning and sub-command specific
  help in the future.
  
  I could use some help here as I'm not that good at writing documentation that
  looks good as output on the command line.
  
  ### antigen
  
  This is a parent command that mainly exists for convenience. The idea is the
  following two are the same.
  
      antigen-list
      antigen list
  
  and
  
      antigen-help
      antigen help
  
  Because of this, we can create aliases like
  
      alias a=antigen
      alias an=antigen
  
  and run the antigen commands without making them look annoyingly long.
  
      a bundle ruby
      a theme candy
      a list
  
  And even...
  
      an update
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
349
  ## Configuration
b84833b4c   Shrikant Sharat   Add readme.
350
351
  
  The following environment variables can be set to customize the behavior of
7ba3548fd   Shrikant Sharat   Updated README wi...
352
  antigen. Make sure you set them *before* source-ing `antigen.zsh`.
b84833b4c   Shrikant Sharat   Add readme.
353
354
355
356
  
  `ANTIGEN_DEFAULT_REPO_URL` &mdash; This is the default repository url that is
  used for `bundle` commands. The default value is robbyrussell's oh-my-zsh repo,
  but you can set this to the fork url of your own fork.
911cc8cb5   Shrikant Sharat   Use ADOTDIR as th...
357
358
359
  `ADOTDIR` &mdash; This directory is used to store all the repo clones, your
  bundles, themes, caches and everything else antigen requires to run smoothly.
  Defaults to `$HOME/.antigen`.
b84833b4c   Shrikant Sharat   Add readme.
360

911cc8cb5   Shrikant Sharat   Use ADOTDIR as th...
361
362
363
  **Note**: `ANTIGEN_REPO_CACHE` & `ANTIGEN_BUNDLE_DIR` &mdash; These variables
  were used previously but are now removed. Please use `ADOTDIR` instead, as
  mentioned above.
b84833b4c   Shrikant Sharat   Add readme.
364

72e36b84e   Shrikant Sharat   Notes on running ...
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
  ## Running the tests
  
  All the tests are in the `tests` folder and are run using the [cram]() test
  system.  Once you have cram installed, you can run the tests as
  
      make
  
  or
  
      make tests
  
  If you are making a feature addition, I'd really appreciate if you can add a
  test for your feature. Even if you can add a test for an existing feature, that
  would be great as the tests are currently seriously lagging behind the full
  functionality of antigen.
ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
380
  ## Notes on writing plugins
b36de9bb3   Shrikant Sharat   Add links in READ...
381

18249921c   Shrikant Sharat   Notes on writing ...
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
  If you are just going to write a single `.sh` file with the goodness you want to
  create, just forget about this and go do that. Antigen will work just find with
  such a plugin.
  
  If you want to know how antigen loads the plugins, do continue.
  
  Firstly, antigen looks for a `*.plugin.zsh` file in the plugin directory. If
  present, it will source *only* this script. Nothing else is sourced.
  
  Otherwise, it looks for `*.zsh` files and if there are any, *all* of them are
  sourced. The order in which they are sourced is not currently defined. Please
  don't rely on this order. Nothing else is sourced after all the `*.zsh` scripts.
  
  If no `*.zsh` files are present, it finally looks for any `*.sh` files and
  sources *all* of them. Again, the order in which they are sourced in not
  currently defined.
  
  No matter which (or none) of the above happen to be sourced, this plugin
  directory is added to the zsh's function path (`$fpath`) so that any completions
  in it are loaded. One exception to this rule is that if this plugin is a prompt
  theme. In which case the theme script is just sourced and nothing else is done.
b36de9bb3   Shrikant Sharat   Add links in READ...
403

ac6ddd7d4   Shrikant Sharat   Heading levels + 1.
404
  ## Meta
b84833b4c   Shrikant Sharat   Add readme.
405

72e36b84e   Shrikant Sharat   Notes on running ...
406
407
408
  ### Helping out
  
  Antigen is licensed with the [MIT License][license]. To contribute, just fork,
7ba3548fd   Shrikant Sharat   Updated README wi...
409
410
  make changes and send a pull request. If its a rather long/complicated change,
  please consider opening an [issue][] first so we can discuss it out.
b84833b4c   Shrikant Sharat   Add readme.
411

72e36b84e   Shrikant Sharat   Notes on running ...
412
  ### Feedback please
5c124ed5a   Shrikant Sharat   Add link to proje...
413
  Any comments/suggestions/feedback welcome. Please join the discussion on the
7ba3548fd   Shrikant Sharat   Updated README wi...
414
415
  [reddit page][] of this project. Also, follow me on twitter,
  [@sharat87](twitter).
5c124ed5a   Shrikant Sharat   Add link to proje...
416

b84833b4c   Shrikant Sharat   Add readme.
417
  [Vundle]: https://github.com/gmarik/vundle
b36de9bb3   Shrikant Sharat   Add links in READ...
418
419
  [page on themes]: https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  [syntax highlighting plugin]: https://github.com/zsh-users/zsh-syntax-highlighting
3e16c4709   Shrikant Sharat   Add autoenv as an...
420
  [autoenv]: https://github.com/kennethreitz/autoenv
b84833b4c   Shrikant Sharat   Add readme.
421
  [oh-my-zsh]: https://github.com/robbyrussell/oh-my-zsh
72e36b84e   Shrikant Sharat   Notes on running ...
422
  [cram]: https://bitheap.org/cram/
b84833b4c   Shrikant Sharat   Add readme.
423
  [issue]: https://github.com/sharat87/antigen/issues
7ba3548fd   Shrikant Sharat   Updated README wi...
424
  [license]: http://mit.sharats.me
5c124ed5a   Shrikant Sharat   Add link to proje...
425
  [reddit page]: http://www.reddit.com/r/commandline/comments/u4f26/antigen_a_plugin_manager_for_zsh_shell/
7ba3548fd   Shrikant Sharat   Updated README wi...
426
  [twitter]: http://twitter.com/sharat87