fix: renamed DST to plugins_dir.

This commit is contained in:
Alexandre Beaulieu 2019-10-01 17:46:56 -04:00
parent 286cb9f97f
commit f6f643cec2
No known key found for this signature in database
GPG key ID: 8B02EA7AE3FC7081

View file

@ -64,9 +64,9 @@ sudo make install
Make sure that your oh-my-zsh `$ZSH_CUSTOM` directory is configured, then clone navi into the plugins directory.
```sh
export ZSH_CUSTOM='/path/to/.zsh'
DST="$ZSH_CUSTOM/plugins"
mkdir -p "$DST"
cd "$DST"
plugins_dir="$ZSH_CUSTOM/plugins"
mkdir -p "$plugins_dir"
cd "$plugins_dir"
git clone https://github.com/denisidoro/navi
```