Commit bac244cc11a37b61034d5c76366c191dba4d533f

Authored by Shrikant Sharat
1 parent a58b694d9d

Added notes on prezto support.

Showing 1 changed file with 16 additions and 1 deletions Side-by-side Diff

... ... @@ -370,6 +370,16 @@ Use
370 370 in your `.zshrc`, before any `antigen-bundle` declarations. It takes no
371 371 arguments.
372 372  
  373 +### antigen-prezto-lib <sup>&alpha;</sup>
  374 +
  375 +This is (almost, but not quite) the same as doing,
  376 +
  377 + antigen-bundle sorin-ionescu/prezto
  378 +
  379 +That is, initializes the canonical repo of the prezto framework. Please note
  380 +that prezto support is very new and experimental in antigen. If you find any
  381 +bugs, please report over on github issues.
  382 +
373 383 ### antigen-theme
374 384  
375 385 Used for switching the prompt theme. Invoke it with the name of the theme you
... ... @@ -524,7 +534,12 @@ project.
524 534 If you want to know how antigen loads the plugins, do continue.
525 535  
526 536 Firstly, antigen looks for a `*.plugin.zsh` file in the plugin directory. If
527   -present, it will source *only* this script. Nothing else is sourced.
  537 +present, it will source *only* this script. Nothing else is sourced. This is for
  538 +oh-my-zsh style plugins.
  539 +
  540 +Secondly, it looks for a `init.zsh` file in the plugin directory. If present, it
  541 +will source *only* this script. Nothing else is sourced. This is for prezto
  542 +style modules.
528 543  
529 544 Otherwise, it looks for `*.zsh` files and if there are any, *all* of them are
530 545 sourced. The order in which they are sourced is not currently defined. Please