Last active
September 12, 2020 06:38
-
-
Save kenjikato/129e7d21956f29ea1263ca25c75a7da9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .bash_profile | |
| # | |
| # The new Mac OS is now zsh based. The .bash_profile file is still left in place as some older sofware might need it. | |
| # Nothing found in this file is currently secret | |
| # | |
| # Check to see if a .bashrc exsit, and if it does source it. | |
| # This shouldn't be needed anymore, but leaving it here commented out for histrical purposes. | |
| # if [ -f ~/.bashrc ]; then | |
| # source ~/.bashrc | |
| # fi | |
| # Setup for NVM | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
| [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment