From 88cf99f4a620106fafaa1d5cd01689ec15831295 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Wed, 11 Sep 2019 07:00:14 -0700 Subject: [PATCH] Add rvm init --- .zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.zshrc b/.zshrc index 6596cd1..7686978 100644 --- a/.zshrc +++ b/.zshrc @@ -31,6 +31,12 @@ if [[ -d "$HOME/.cargo" ]]; then export PATH=$HOME/.cargo/bin:$PATH fi +if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then + source "$HOME/.rvm/scripts/rvm" +elif [[ -s "/usr/local/rvm/scripts/rvm" ]]; then + source "/usr/local/rvm/scripts/rvm" +fi + which nvim &> /dev/null neovim="$?"