]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - README.md
Fix return value of _autoenv_source; use ': $(( .. ))'
[zsh-autoenv.git] / README.md
index 2f050c6d77ae1534b9ebd202d4aa90ee079580f7..bd2d295ccafdb471d2596e01b6e99e2675c4daeb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,6 @@
-[![Build Status](https://travis-ci.org/Tarrasch/zsh-autoenv.png)](https://travis-ci.org/Tarrasch/zsh-autoenv)
+[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/Tarrasch/zsh-autoenv/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
+
+[![Build Status](https://travis-ci.org/Tarrasch/zsh-autoenv.svg?branch=master)](https://travis-ci.org/Tarrasch/zsh-autoenv)
 
 # Autoenv for zsh
 
@@ -13,10 +15,23 @@ This is is a zsh optimized version of
 
 ## Installation
 
-Using [antigen](https://github.com/zsh-users/antigen)
+### Using [antigen](https://github.com/zsh-users/antigen)
 
     antigen-bundle Tarrasch/zsh-autoenv
 
+### Using [zgen](https://github.com/tarjoilija/zgen)
+
+Add the following to your `.zshrc` where you are loading your plugins:
+
+    zgen load Tarrasch/zsh-autoenv
+
+### Manually
+
+Clone the repository and source it from your `~/.zshrc` file:
+
+    git clone https://github.com/Tarrasch/zsh-autoenv ~/.dotfiles/lib/zsh-autoenv
+    echo 'source ~/.dotfiles/lib/zsh-autoenv/autoenv.zsh' >> ~/.zshrc
+
 ## Credits
 
 The code was mostly copied from [Joshua Clayton](https://github.com/joshuaclayton)