From 5365218af23a96c9ce4675c452cda360d29e1378 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Tue, 19 Jul 2016 20:56:35 -0500 Subject: [PATCH] Add NVM settings to profile. --- .bash_profile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.bash_profile b/.bash_profile index b67db39..44d5b16 100644 --- a/.bash_profile +++ b/.bash_profile @@ -70,6 +70,10 @@ fi # Use brew-installed PHP binaries. export PATH="$brew_prefix/opt/php56/bin:$PATH" +# Use nvm. +export NVM_DIR="$HOME/.nvm" +. "$brew_prefix/opt/nvm/nvm.sh" + # Vagrant configuration. # export VAGRANT_DEFAULT_PROVIDER='virtualbox'