Commit de8d00ed42d5aa3973bcd4ff3cb9d439a162be78

Authored by Shrikant Sharat
1 parent 78ea5a9f42

Use the new command naming in quick usage.

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

... ... @@ -22,27 +22,27 @@ might look like this
22 22 source /path-to-antigen-clone/antigen.zsh
23 23  
24 24 # Load the oh-my-zsh's library.
25   - bundle-lib
  25 + antigen-lib
26 26  
27 27 # Bundles from the default repo (robbyrussell's oh-my-zsh).
28   - bundle git
29   - bundle heroku
30   - bundle pip
31   - bundle lein
32   - bundle command-not-found
  28 + antigen-bundle git
  29 + antigen-bundle heroku
  30 + antigen-bundle pip
  31 + antigen-bundle lein
  32 + antigen-bundle command-not-found
33 33  
34 34 # Syntax highlighting bundle.
35   - bundle zsh-users/zsh-syntax-highlighting
  35 + antigen-bundle zsh-users/zsh-syntax-highlighting
36 36  
37 37 # Load the theme.
38   - bundle-theme robbyrussell
  38 + antigen-theme robbyrussell
39 39  
40 40 # Tell antigen that you're done.
41   - bundle-apply
  41 + antigen-apply
42 42  
43 43 Open your zsh with this zshrc and you should see all the bundles you defined
44 44 here, getting installed. Once its done, you are ready to roll. The complete
45   -syntax for the `bundle` command is discussed further down on this page.
  45 +syntax for the `antigen-bundle` command is discussed further down on this page.
46 46  
47 47 # Motivation
48 48