Skip to content

Instantly share code, notes, and snippets.

@marcomontes
Last active June 1, 2020 19:49
Show Gist options
  • Save marcomontes/a13cf9e08e5416baeac1ab3b6ac3eccb to your computer and use it in GitHub Desktop.
Save marcomontes/a13cf9e08e5416baeac1ab3b6ac3eccb to your computer and use it in GitHub Desktop.
OSX - Oh My ZSH! + RBENV
# Oh My ZSH!
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
brew update && brew install rbenv ruby-build
echo '# Install Ruby Gems to ~/gems' >> ~/.zshrc
echo 'export GEM_HOME=$HOME/gems' >> ~/.zshrc
echo 'export PATH=$HOME/gems/bin:$PATH' >> ~/.zshrc
source ~/.zshrc
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment