Skip to content

Commit

Permalink
Merge pull request #3 from brkn/patch-1
Browse files Browse the repository at this point in the history
README - Simplify oh my zsh installation steps
  • Loading branch information
mroth committed Apr 29, 2021
2 parents c51beee + 872cece commit dce3fd1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit dce3fd1

Please sign in to comment.