Skip to content

Commit

Permalink
Merge pull request #4535 from robbyrussell/mcornella-patch-1
Browse files Browse the repository at this point in the history
[README] Update custom directory command and fix code blocks
  • Loading branch information
mcornella committed Oct 21, 2015
2 parents ba20b98 + e9de366 commit e44aa50
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,15 @@ Oh My Zsh is installed by running one of the following commands in your terminal

#### via curl

`sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"`
```shell
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
```

#### via wget

`sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"`
```shell
sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
```

## Using Oh My Zsh

Expand Down Expand Up @@ -100,7 +104,7 @@ The default location is `~/.oh-my-zsh` (hidden in your home directory)
If you'd like to change the install directory with the `ZSH` environment variable, either by running `export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline like this:

```shell
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | ZSH=~/.dotfiles/zsh sh
export ZSH="~/.dotfiles/oh-my-zsh"; sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
```

#### Manual Installation
Expand Down

0 comments on commit e44aa50

Please sign in to comment.