mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
rbenv: add README (#8293)
This commit is contained in:
parent
090ab73daa
commit
a7c740b1d7
1 changed files with 26 additions and 0 deletions
26
plugins/rbenv/README.md
Normal file
26
plugins/rbenv/README.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
# rbenv plugin
|
||||
|
||||
The primary job of this plugin is to provide `rbenv_prompt_info` which can be added to your theme to include Ruby
|
||||
version and gemset information into your prompt.
|
||||
|
||||
Some functionality of this plugin will not work unless you also have the rbenv plugin *gemset* installed.
|
||||
https://github.com/jf/rbenv-gemset
|
||||
|
||||
To use it, add `rbenv` to the plugins array in your zshrc file:
|
||||
```zsh
|
||||
plugins=(... rbenv)
|
||||
```
|
||||
|
||||
## Alias
|
||||
|
||||
| Alias | Command | Description |
|
||||
|----------------|---------------------|----------------------------------|
|
||||
| rubies | `rbenv versions` | List the installed Ruby versions |
|
||||
| gemsets | `rbenv gemset list` | List the existing gemsets |
|
||||
|
||||
## Functions
|
||||
|
||||
* `current_ruby`: The version of Ruby currently being used.
|
||||
* `current_gemset`: The name of the current gemset.
|
||||
* `gems`: Lists installed gems with enhanced formatting and color.
|
||||
* `rbenv_prompt_info`: For adding information to your prompt. Format: `<ruby version>@<current gemset>`.
|
Loading…
Reference in a new issue