1
0
Fork 0

Add rbenv rehash zstyle option

pull/353/head
Zeh Rizzatti 12 years ago
parent c737369083
commit 691e208527

@ -5,6 +5,14 @@
# Authors: Sorin Ionescu <sorin.ionescu@gmail.com> # Authors: Sorin Ionescu <sorin.ionescu@gmail.com>
# #
local _rbenv_rehash
zstyle -s ':prezto:module:ruby:rbenv' rehash '_rbenv_rehash' || _rbenv_rehash='yes'
if [[ "$_rbenv_rehash" == (N|n)(O|o) ]]; then
$_rbenv_rehash='--no-rehash'
else
$_rbenv_rehash=''
fi
# Load RVM into the shell session. # Load RVM into the shell session.
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
# Unset AUTO_NAME_DIRS since auto adding variable-stored paths to ~ list # Unset AUTO_NAME_DIRS since auto adding variable-stored paths to ~ list
@ -17,11 +25,11 @@ if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
# Load manually installed rbenv into the shell session. # Load manually installed rbenv into the shell session.
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
path=("$HOME/.rbenv/bin" $path) path=("$HOME/.rbenv/bin" $path)
eval "$(rbenv init - --no-rehash zsh)" eval "$(rbenv init - $_rbenv_rehash zsh)"
# Load package manager installed rbenv into the shell session. # Load package manager installed rbenv into the shell session.
elif (( $+commands[rbenv] )); then elif (( $+commands[rbenv] )); then
eval "$(rbenv init - --no-rehash zsh)" eval "$(rbenv init - $_rbenv_rehash zsh)"
# Install local gems according to operating system conventions. # Install local gems according to operating system conventions.
else else

Loading…
Cancel
Save