my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
717 B

3 years ago
  1. ## asdf
  2. **Maintainer:** [@RobLoach](https://github.com/RobLoach)
  3. Adds integration with [asdf](https://github.com/asdf-vm/asdf), the extendable version manager, with support for Ruby, Node.js, Elixir, Erlang and more.
  4. ### Installation
  5. 1. Enable the plugin by adding it to your `plugins` definition in `~/.zshrc`.
  6. ```
  7. plugins=(asdf)
  8. ```
  9. 2. [Install asdf](https://github.com/asdf-vm/asdf#setup) by running the following:
  10. ```
  11. git clone https://github.com/asdf-vm/asdf.git ~/.asdf
  12. ```
  13. ### Usage
  14. See the [asdf usage documentation](https://github.com/asdf-vm/asdf#usage) for information on how to use asdf:
  15. ```
  16. asdf plugin-add nodejs [email protected]:asdf-vm/asdf-nodejs.git
  17. asdf install nodejs 5.9.1
  18. ```