summaryrefslogtreecommitdiff
path: root/plugins/asdf
diff options
context:
space:
mode:
authorKartik Vashistha <kartikv.work@gmail.com>2025-03-29 02:42:46 -0700
committerGitHub <noreply@github.com>2025-03-29 10:42:46 +0100
commit2f3a141f65ba082e1eb42ea3123fc2bd978c0c83 (patch)
treeee933249467a71c67b1644dfce0ffb56d09fa133 /plugins/asdf
parent346c09d469c9d2681399b0938e9af883ebdae829 (diff)
downloadzsh-2f3a141f65ba082e1eb42ea3123fc2bd978c0c83.tar.gz
zsh-2f3a141f65ba082e1eb42ea3123fc2bd978c0c83.tar.bz2
zsh-2f3a141f65ba082e1eb42ea3123fc2bd978c0c83.zip
docs(asdf): match README with 0.16 (#13026)
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
Diffstat (limited to 'plugins/asdf')
-rw-r--r--plugins/asdf/README.md41
1 files changed, 24 insertions, 17 deletions
diff --git a/plugins/asdf/README.md b/plugins/asdf/README.md
index 4af69a75c..e8ff2d740 100644
--- a/plugins/asdf/README.md
+++ b/plugins/asdf/README.md
@@ -1,32 +1,39 @@
-## asdf
+# asdf
Adds integration with [asdf](https://github.com/asdf-vm/asdf), the extendable version manager, with support for Ruby, Node.js, Elixir, Erlang and more.
-### Installation
+## Installation
-1. [Download asdf](https://asdf-vm.com/guide/getting-started.html#_2-download-asdf) by running the following:
+1. [Install](https://asdf-vm.com/guide/getting-started.html#_1-install-asdf) asdf and ensure that's it's discoverable on `$PATH`;
+2. Enable it by adding it to your `plugins` definition in `~/.zshrc`:
- ```
- git clone https://github.com/asdf-vm/asdf.git ~/.asdf
- ```
+```sh
+plugins=(asdf)
+```
-2. [Enable asdf](https://asdf-vm.com/guide/getting-started.html#_3-install-asdf) by adding it to your `plugins` definition in `~/.zshrc`.
+## Usage
- ```
- plugins=(asdf)
- ```
+Refer to the [asdf plugin documentation](https://asdf-vm.com/guide/getting-started.html#_4-install-a-plugin) for information on how to add a plugin and install the many runtime versions for it.
-### Usage
+Example for installing the nodejs plugin and the many runtimes for it:
-See the [asdf documentation](https://asdf-vm.com/guide/getting-started.html#_4-install-a-plugin) for information on how to use asdf:
+```sh
+# Add plugin to asdf
+asdf plugin add nodejs
-```
-asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
+# Install the latest available nodejs runtime version
asdf install nodejs latest
-asdf global nodejs latest
-asdf local nodejs latest
+
+# Install nodejs v16.5.0 runtime version
+asdf install nodejs 16.5.0
+
+# Set the latest version in .tools-version in the current working directory
+asdf set nodejs latest
+
+# Set a version globally that will apply to all directories under $HOME
+asdf set -u nodejs 16.5.0
```
-### Maintainer
+## Maintainer
- [@RobLoach](https://github.com/RobLoach)