Skip to content

Commit

Permalink
Revert "zsh: remove rbenv init from .zshrc"
Browse files Browse the repository at this point in the history
Unfortunately, rbenv doesn't work as consistently as I had thought when
I original crafted this commit. I'm going to revert it for now to get
some predictability back into the few Ruby things I still have to do.

This reverts commit e7ad860.
  • Loading branch information
lencioni committed Feb 20, 2017
1 parent 7fd6eea commit 2cbf354
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ if [[ $- == *i* ]]; then
fi
fi

# Load rbenv if available
if which rbenv > /dev/null; then
eval "$(rbenv init -)"
fi

export EDITOR=vim
export VISUAL=vim

Expand Down

3 comments on commit 2cbf354

@wincent
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#chruby4life!

@wincent
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or at least until something better comes along.

@lencioni
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#5

Please sign in to comment.