]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/asdf/README.md
f047860e2777896cdea7b7d82e15af84674ef731
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / asdf / README.md
1 ## asdf
2
3 **Maintainer:** [@RobLoach](https://github.com/RobLoach)
4
5 Adds integration with [asdf](https://github.com/asdf-vm/asdf), the extendable version manager, with support for Ruby, Node.js, Elixir, Erlang and more.
6
7 ### Installation
8
9 1. [Download asdf](https://asdf-vm.com/guide/getting-started.html#_2-download-asdf) by running the following:
10
11   ```
12   git clone https://github.com/asdf-vm/asdf.git ~/.asdf
13   ```
14
15 2. [Enable asdf](https://asdf-vm.com/guide/getting-started.html#_3-install-asdf) by adding it to your `plugins` definition in `~/.zshrc`.
16
17   ```
18   plugins=(asdf)
19   ```
20
21 ### Usage
22
23 See the [asdf documentation](https://asdf-vm.com/guide/getting-started.html#_4-install-a-plugin) for information on how to use asdf:
24
25 ```
26 asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
27 asdf install nodejs latest
28 asdf global nodejs latest
29 asdf local nodejs latest
30 ```