-
Notifications
You must be signed in to change notification settings - Fork 0
/
bash_profile
79 lines (68 loc) · 1.61 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
set -o vi
set +o ignoreeof
set +o noclobber
set +o nounset
shopt -s cdable_vars
shopt -s histappend
#shopt -s checkhash
HISTSIZE=40960
FCEDIT=vi
function last_cmd_line {
last_cmd=$(history 1 | cut -d ' ' -f5- | sed "s/ *$//g" | sed "s/^ *//g")
}
function git_branch_name {
git_branch=$(git branch | grep "*" | cut -d ' ' -f2-)
}
function timer_start {
timer_start=${timer_start:-$SECONDS}
}
function timer_end {
timer_layout=""
timer_cost=$(($SECONDS - $timer_start))
if [ $timer_cost -ge 3600 ]; then
timer_layout="$(($timer_cost / 3600))h"
timer_cost=$(($timer_cost % 3600))
fi
if [ $timer_cost -ge 60 ]; then
timer_layout="$timer_layout$(($timer_cost / 60))m"
timer_cost=$(($timer_cost % 60))
fi
timer_layout="${timer_layout}${timer_cost}s"
unset timer_start
}
trap 'timer_start' DEBUG
PROMPT_COMMAND='last_cmd_line; timer_end; git_branch_name'
PS1='\
\[\033[0;32m\]<\#/\!>\
\[\033[3;36m\]<$git_branch>\
\[\033[1;31m\]\u\
\[\033[0;34m\]^\
\[\033[0;33m\]\w\
\[\033[0;34m\]@\
\[\033[0;36m\]<\t \d>\
\[\033[1;31m\][$?]\
\[\033[1;34m\]*\j*\
\[\033[1;32m\][$timer_layout]\
\[\033[3;35m\]"$last_cmd"\
\[\033[00m\]\[\e[0;31m\]\n>> \
\[\e[m\]\[\e[0;00m\]\
'
PS2="\
\[\033[1;32m\]cont. >> \
\[\e[m\]\[\e[0;00m\]\
"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias rmd='rm -rfv'
alias rm='rm -v'
alias mv='mv -v'
alias cp='cp -v'
alias mkdir='mkdir -v'
alias s='sudo'
alias gdb='gdb -q'
alias py='python'
alias pl='perl'