-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile
29 lines (20 loc) · 860 Bytes
/
profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export PS1='\W \u$ '
alias mysql="/Applications/MAMP/Library/bin/mysql --auto-rehash --host=localhost -uroot -proot"
alias love="/Applications/love.app/Contents/MacOS/love"
# Set CLICOLOR if you want Ansi Colors in iTerm2
export CLICOLOR=1
# Set colors to match iTerm2 Terminal Colors
export TERM=xterm-256color
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
# Correct Vim colors
source "$HOME/.vim/bundle/gruvbox/gruvbox_256palette.sh"
# Setting PATH for Python 3.4
# The orginal version is saved in .profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
export PATH
export GOPATH=$HOME/Git/go/
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOBIN
export MAMP_PHP=/Applications/MAMP/bin/php/php5.6.10/bin
export PATH="$MAMP_PHP:$PATH"
test -e ${HOME}/.iterm2_shell_integration.bash && source ${HOME}/.iterm2_shell_integration.bash