Skip to content

Instantly share code, notes, and snippets.

@bayleedev
Created April 3, 2017 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bayleedev/46d665542e9ad6ea264187c00be1a934 to your computer and use it in GitHub Desktop.
Save bayleedev/46d665542e9ad6ea264187c00be1a934 to your computer and use it in GitHub Desktop.
setnvm() {
if [ "$PWD" != "$MYOLDPWD" ]; then
MYOLDPWD="$PWD";
if [ -e "$PWD/.nvmrc" ]; then
nvm use
fi
fi
}
function cd () { builtin cd "$@" && setnvm; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment