Install asdf
plugins with dotbot
.
This plugin requires dotbot
to be installed.
Also, at runtime this plugin requires asdf
command to be installed.
- Run:
git submodule add https://github.com/sobolevn/dotbot-asdf.git
- Modify your
./install
with new plugin directory:
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" --plugin-dir dotbot-asdf -c "${CONFIG}" "${@}"
- Add required options to your
install.conf.yaml
:
# This example uses python, nodejs and ruby plugins:
- asdf:
- plugin: python
url: https://github.com/tuvistavie/asdf-python.git
- plugin: nodejs
url: https://github.com/asdf-vm/asdf-nodejs.git
- plugin: ruby
url: https://github.com/asdf-vm/asdf-ruby.git
Plugins can also be specified with just a name for known plugins:
# This example uses python, nodejs and ruby plugins:
- asdf:
- plugin: python
- plugin: nodejs
- plugin: ruby
That's it!
MIT. See LICENSE for more details.