Last active
December 24, 2016 03:41
-
-
Save kebman/f7fe27620ba95659199c4bef47522960 to your computer and use it in GitHub Desktop.
The bash profile for my Terminal in Mac OS X Sierra
This file contains 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
export PATH=/usr/local/mysql/bin:$PATH | |
export PS1="\u \\$ \[$(tput sgr0)\]" | |
alias nj='cd /Users/username/Dropbox/node' | |
alias home='cd ~' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Additionally I've added a shortcut for Sublime Text: ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl
Note: While most tutorials will show the paths with quotations, it didn't work for me, while paths without quotations did. Also make sure /usr/local/bin is in your path environment (env or echo $PATH).