diff options
| author | Ahmed Abdelhalim <[email protected]> | 2021-12-17 20:32:24 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2021-12-17 20:32:24 +0100 |
| commit | 73bf5c157d6ce8d3333d1b9ffd8cf70369f98001 (patch) | |
| tree | 58db9c9ed43c96a0883796818a7168fc0c23ba7e /.bash_profile | |
| parent | b568b1f13cd36c702c65d7217ed40eebab17a92a (diff) | |
Reorder the packages/dependencies based on frequent use/priority
Diffstat (limited to '.bash_profile')
| -rw-r--r-- | .bash_profile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.bash_profile b/.bash_profile index c04a8b3..48754c2 100644 --- a/.bash_profile +++ b/.bash_profile @@ -51,14 +51,6 @@ if command -v rbenv 1>/dev/null 2>&1; then eval "$(rbenv init -)" fi -# ==== NVM config -# node version manager from homebrew ,the source line to move install location -# and prevent Node installs being lost upon upgrading nvm. -if [ -d $HOME/.nvm ]; then - export NVM_DIR=~/.nvm - source $(brew --prefix nvm)/nvm.sh -fi - # ==== pyenv config (and virtualenv) if command -v pyenv 1>/dev/null 2>&1; then eval "$(pyenv init --path)" @@ -81,6 +73,14 @@ if [ -f $HOME/.cargo/env ]; then source "$HOME/.cargo/env" fi +# ==== NVM config +# node version manager from homebrew ,the source line to move install location +# and prevent Node installs being lost upon upgrading nvm. +if [ -d $HOME/.nvm ]; then + export NVM_DIR=~/.nvm + source $(brew --prefix nvm)/nvm.sh +fi + # ==== MISC config if command -v thefuck 1>/dev/null 2>&1; then # allow fuck to be alias of thefuck |
