mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-23 02:35:38 +01:00
docs: update readme
This commit is contained in:
parent
900154187a
commit
a20e5f6d33
1 changed files with 16 additions and 9 deletions
|
|
@ -4,27 +4,34 @@ Adds integration with [asdf](https://github.com/asdf-vm/asdf), the extendable ve
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
1. [Download asdf](https://asdf-vm.com/guide/getting-started.html#_2-download-asdf) by running the following:
|
1. [Download asdf](https://asdf-vm.com/guide/getting-started.html#_1-install-asdf):
|
||||||
|
|
||||||
```
|
```sh
|
||||||
git clone https://github.com/asdf-vm/asdf.git ~/.asdf
|
# For macos via homebrew
|
||||||
```
|
brew install asdf
|
||||||
|
```
|
||||||
|
|
||||||
|
For OS's where asdf isn't directly available to download via the package manager, follow [this](https://asdf-vm.com/guide/getting-started.html#install-asdf) section.
|
||||||
|
|
||||||
2. [Enable asdf](https://asdf-vm.com/guide/getting-started.html#_3-install-asdf) by adding it to your `plugins` definition in `~/.zshrc`.
|
2. [Enable asdf](https://asdf-vm.com/guide/getting-started.html#_3-install-asdf) by adding it to your `plugins` definition in `~/.zshrc`.
|
||||||
|
|
||||||
```
|
```sh
|
||||||
plugins=(asdf)
|
plugins=(asdf)
|
||||||
```
|
```
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
See the [asdf documentation](https://asdf-vm.com/guide/getting-started.html#_4-install-a-plugin) for information on how to use asdf:
|
See the [asdf plugin documentation](https://asdf-vm.com/guide/getting-started.html#_4-install-a-plugin) for information on how to use asdf:
|
||||||
|
|
||||||
```
|
```sh
|
||||||
asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
|
asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
|
||||||
asdf install nodejs latest
|
asdf install nodejs latest
|
||||||
asdf global nodejs latest
|
|
||||||
asdf local nodejs latest
|
# Set the latest version
|
||||||
|
asdf set nodejs latest
|
||||||
|
|
||||||
|
# Set globally to a pinned version
|
||||||
|
asdf set -u nodejs 16.5.0
|
||||||
```
|
```
|
||||||
|
|
||||||
### Maintainer
|
### Maintainer
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue