Skip to content

Instantly share code, notes, and snippets.

@mikemclin
Last active November 26, 2019 16:30
Show Gist options
  • Save mikemclin/ed81330f336165e50fbb to your computer and use it in GitHub Desktop.
Save mikemclin/ed81330f336165e50fbb to your computer and use it in GitHub Desktop.
Bash Profile
export PATH=vendor/bin:$PATH
export PATH=Users/mikemclin/bin:$PATH
export PATH=/.composer/vendor/bin:$PATH
export PATH=node_modules/.bin:$PATH
export EDITOR='subl -w'
alias artisan='php artisan'
function homestead() {
( cd ~/Homestead && vagrant $* )
}
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
@mikemclin
Copy link
Author

Open .bash_profile file in Sublime Text with the following command:

subl ~/.bash_profile

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment