Unverified Commit ba341fa3 authored by Berkan Ünal's avatar Berkan Ünal Committed by GitHub
Browse files

Simplify oh my zsh installation steps

parent c51beee6
......@@ -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