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.

21 lines
573 B

3 years ago
  1. # chruby plugin
  2. This plugin loads [chruby](https://github.com/postmodern/chruby), a tool that changes the
  3. current Ruby version, and completion and a prompt function to display the Ruby version.
  4. Supports brew and manual installation of chruby.
  5. To use it, add `chruby` to the plugins array in your zshrc file:
  6. ```zsh
  7. plugins=(... chruby)
  8. ```
  9. ## Usage
  10. If you'd prefer to specify an explicit path to load chruby from
  11. you can set variables like so:
  12. ```zsh
  13. zstyle :omz:plugins:chruby path /local/path/to/chruby.sh
  14. zstyle :omz:plugins:chruby auto /local/path/to/auto.sh
  15. ```