-
Notifications
You must be signed in to change notification settings - Fork 1
/
.bash_profile
30 lines (26 loc) · 954 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
30
#export PS1="\[\033[36m\]andrey\[\033[m\]@\[\033[32m\]workmac:\[\033[33;1m\]\w\[\033[m\]\$ "
#export CLICOLOR=1
#export LSCOLORS=ExFxBxDxCxegedabagacad
function prompt {
local BLACK="\[\033[0;30m\]"
local BLACKBOLD="\[\033[1;30m\]"
local RED="\[\033[0;31m\]"
local REDBOLD="\[\033[1;31m\]"
local GREEN="\[\033[0;32m\]"
local GREENBOLD="\[\033[1;32m\]"
local YELLOW="\[\033[0;33m\]"
local YELLOWBOLD="\[\033[1;33m\]"
local BLUE="\[\033[0;34m\]"
local BLUEBOLD="\[\033[1;34m\]"
local PURPLE="\[\033[0;35m\]"
local PURPLEBOLD="\[\033[1;35m\]"
local CYAN="\[\033[0;36m\]"
local CYANBOLD="\[\033[1;36m\]"
local WHITE="\[\033[0;37m\]"
local WHITEBOLD="\[\033[1;37m\]"
local RESETCOLOR="\[\e[00m\]"
export PS1="$WHITE \t"$GREEN" andrey$GREENBOLD@"$CYAN"workmac:$GREEN\w$RESETCOLOR$GREENBOLD\$(git branch 2> /dev/null) \n💥 "$WHITE"\$ -> $RESETCOLOR"
#export PS2=" | → $RESETCOLOR"
}
prompt
PATH=/Applications:$PATH