Unverified Commit dce3fd1c authored by Matthew Rothenberg's avatar Matthew Rothenberg Committed by GitHub
Browse files

Merge pull request #3 from brkn/patch-1

README - Simplify oh my zsh installation steps
parents c51beee6 872cece6
......@@ -57,9 +57,17 @@ Antigen will handle cloning the plugin for you automatically the next time you s
### [Oh-My-Zsh](http://ohmyz.sh/)
1. `cd ~/.oh-my-zsh/custom/plugins`
2. `git clone https://github.com/mroth/evalcache`
3. Add *evalcache* to your plugin list - edit `~.zshrc` and change `plugins=(...)` to `plugins=(... evalcache)`
1. Clone this repository into `$ZSH_CUSTOM/plugins` (by default `~/.oh-my-zsh/custom/plugins`)
```sh
git clone https://github.com/mroth/evalcache ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/evalcache
```
2. Edit `~/.zshrc` to add *evalcache* to your plugin list,
```diff
- plugins=(...)
+ plugins=(... evalcache)
```
### [Zgen](https://github.com/tarjoilija/zgen)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment