mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-07-14 16:09:01 +08:00
1.4 KiB
1.4 KiB
asdf
Adds integration with asdf, the extendable version manager, with support for Ruby, Node.js, Elixir, Erlang and more.
Installation
- Install asdf and ensure that's it's discoverable on
$PATH
; - Enable it by adding it to your
plugins
definition in~/.zshrc
:
plugins=(asdf)
Usage
Refer to the asdf plugin documentation for information on how to add a plugin and install the many runtime versions for it.
Example for installing the nodejs plugin and the many runtimes for it:
# Add plugin to asdf
asdf plugin add nodejs
# Install the latest available version
asdf install nodejs latest
# Uninstall the latest version
asdf uninstall nodejs latest
# Install a specific version
asdf install nodejs 16.5.0
# Set the latest version in .tool-versions of the `current directory`
asdf set nodejs latest
# Set a specific version in the `parent directory`
asdf set -p nodejs 16.5.0 # -p is shorthand for --parent
# Set a global version under `$HOME`
asdf set -u nodejs 16.5.0 # -u is shorthand for --home
For more commands, run asdf help
or refer to the
asdf CLI documentation.