adding nvm for managing node.js versions

This commit is contained in:
James Walker 2011-05-02 18:25:06 -04:00
parent fc270ae4f9
commit b37967985f
3 changed files with 9 additions and 0 deletions

3
.gitmodules vendored
View File

@ -4,3 +4,6 @@
[submodule "oh-my-zsh"]
path = oh-my-zsh
url = git@github.com:walkah/oh-my-zsh.git
[submodule "nvm"]
path = nvm
url = git@github.com:walkah/nvm.git

1
nvm Submodule

@ -0,0 +1 @@
Subproject commit 916aab5dcd36bb0d597b85f2c78745b313cc9bc9

5
zshrc
View File

@ -32,4 +32,9 @@ if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
source /usr/local/bin/virtualenvwrapper.sh
fi
# Node / nvm
if [ -f "$HOME/.nvm/nvm.sh" ]; then
source "$HOME/.nvm/nvm.sh"
fi
export LSCOLORS="ExGxFxdxCxDxDxhbadExEx"