Skip to content

Instantly share code, notes, and snippets.

@kenjikato
Last active September 12, 2020 06:38
Show Gist options
  • Select an option

  • Save kenjikato/129e7d21956f29ea1263ca25c75a7da9 to your computer and use it in GitHub Desktop.

Select an option

Save kenjikato/129e7d21956f29ea1263ca25c75a7da9 to your computer and use it in GitHub Desktop.
# .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