diff options
author | Eric Hsieh <benson.doraemon@gmail.com> | 2022-10-26 03:35:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 21:35:30 +0200 |
commit | 820b8bd40f19867d7811766f967d66faa5e5a818 (patch) | |
tree | b4ac351c61d48754c6f07486df6a7e215e04fc97 /plugins | |
parent | bb8a0aa2c1c54c3aeb3e703397ab050fd62e36e6 (diff) | |
download | zsh-820b8bd40f19867d7811766f967d66faa5e5a818.tar.gz zsh-820b8bd40f19867d7811766f967d66faa5e5a818.tar.bz2 zsh-820b8bd40f19867d7811766f967d66faa5e5a818.zip |
docs(autojump): fix outdated links and update description (#11289)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/asdf/README.md | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/plugins/asdf/README.md b/plugins/asdf/README.md index e8aa976bc..f047860e2 100644 --- a/plugins/asdf/README.md +++ b/plugins/asdf/README.md @@ -6,22 +6,25 @@ Adds integration with [asdf](https://github.com/asdf-vm/asdf), the extendable ve ### Installation -1. Enable the plugin by adding it to your `plugins` definition in `~/.zshrc`. +1. [Download asdf](https://asdf-vm.com/guide/getting-started.html#_2-download-asdf) by running the following: ``` - plugins=(asdf) + git clone https://github.com/asdf-vm/asdf.git ~/.asdf ``` -2. [Install asdf](https://github.com/asdf-vm/asdf#setup) by running the following: +2. [Enable asdf](https://asdf-vm.com/guide/getting-started.html#_3-install-asdf) by adding it to your `plugins` definition in `~/.zshrc`. + ``` - git clone https://github.com/asdf-vm/asdf.git ~/.asdf + plugins=(asdf) ``` ### Usage -See the [asdf usage documentation](https://github.com/asdf-vm/asdf#usage) for information on how to use asdf: +See the [asdf documentation](https://asdf-vm.com/guide/getting-started.html#_4-install-a-plugin) for information on how to use asdf: ``` -asdf plugin-add nodejs git@github.com:asdf-vm/asdf-nodejs.git -asdf install nodejs 5.9.1 +asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git +asdf install nodejs latest +asdf global nodejs latest +asdf local nodejs latest ``` |