feat: move configuration files inside home folder
This commit is contained in:
39
home/.config/zsh/ohmyzsh/plugins/asdf/README.md
Normal file
39
home/.config/zsh/ohmyzsh/plugins/asdf/README.md
Normal file
@ -0,0 +1,39 @@
|
||||
# asdf
|
||||
|
||||
Adds integration with [asdf](https://github.com/asdf-vm/asdf), the extendable version manager, with support for Ruby, Node.js, Elixir, Erlang and more.
|
||||
|
||||
## Installation
|
||||
|
||||
1. [Install](https://asdf-vm.com/guide/getting-started.html#_1-install-asdf) asdf and ensure that's it's discoverable on `$PATH`;
|
||||
2. Enable it by adding it to your `plugins` definition in `~/.zshrc`:
|
||||
|
||||
```sh
|
||||
plugins=(asdf)
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Refer to the [asdf plugin documentation](https://asdf-vm.com/guide/getting-started.html#_4-install-a-plugin) 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:
|
||||
|
||||
```sh
|
||||
# Add plugin to asdf
|
||||
asdf plugin add nodejs
|
||||
|
||||
# Install the latest available nodejs runtime version
|
||||
asdf install nodejs latest
|
||||
|
||||
# Install nodejs v16.5.0 runtime version
|
||||
asdf install nodejs 16.5.0
|
||||
|
||||
# Set the latest version in .tools-version in the current working directory
|
||||
asdf set nodejs latest
|
||||
|
||||
# Set a version globally that will apply to all directories under $HOME
|
||||
asdf set -u nodejs 16.5.0
|
||||
```
|
||||
|
||||
## Maintainer
|
||||
|
||||
- [@RobLoach](https://github.com/RobLoach)
|
13
home/.config/zsh/ohmyzsh/plugins/asdf/asdf.plugin.zsh
Normal file
13
home/.config/zsh/ohmyzsh/plugins/asdf/asdf.plugin.zsh
Normal file
@ -0,0 +1,13 @@
|
||||
(( ! $+commands[asdf] )) && return
|
||||
|
||||
export ASDF_DATA_DIR="${ASDF_DATA_DIR:-$HOME/.asdf}"
|
||||
path=("$ASDF_DATA_DIR/shims" $path)
|
||||
|
||||
# If the completion file doesn't exist yet, we need to autoload it and
|
||||
# bind it to `asdf`. Otherwise, compinit will have already done that.
|
||||
if [[ ! -f "$ZSH_CACHE_DIR/completions/_asdf" ]]; then
|
||||
typeset -g -A _comps
|
||||
autoload -Uz _asdf
|
||||
_comps[asdf]=_asdf
|
||||
fi
|
||||
asdf completion zsh >| "$ZSH_CACHE_DIR/completions/_asdf" &|
|
Reference in New Issue
Block a user