These are the few steps I ran to completely remove RVM and install rbenv:
To remove pretty much everything:
$ rvm implodeand to tidy up:
$ vim .zshrc # and remove the changes to PATHInstall:
$ brew update
$ brew install rbenv ruby-buildthen configure:
vim .zshrc and add:
export RBENV_ROOT=/usr/local/var/rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fiThat's it!