-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_profile
29 lines (26 loc) · 1002 Bytes
/
.bash_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
#------------------------------------------
# BASH_COMPLETION CONFIGURATION
# brew install git bash-completion
#------------------------------------------
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
#------------------------------------------
# BASH GIT PROMPT
# brew install bash-git
#------------------------------------------
if [ -f "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh" ]; then
__GIT_PROMPT_DIR=$(brew --prefix)/opt/bash-git-prompt/share
source "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh"
fi
#------------------------------------------
# TERMINAL CONFIGURATION
#------------------------------------------
#export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\] \$ "
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
#------------------------------------------
# GO CONFIGURATION
#------------------------------------------
export GOPATH=~/go
export PATH=$PATH:$GOPATH/bin