from rbenv to chruby: zsh startup time

Just switched from rbenv to chruby using this guide, and my zsh startup time improved by about 10 seconds. I’d been meaning to debug why it was taking so long — bonus!

Here’s the offending lines that were removed from ~/.zlogin:

export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"

 

Leave a comment