forked from gregdan3/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
219 lines (184 loc) · 6.46 KB
/
.bashrc
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#
# ~/.bashrc
#
[[ $- != *i* ]] && return
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
use_color=true
# dircolors --print-database uses its own built-in database
# instead of using /etc/DIR_COLORS. Try to use the external file
# first to take advantage of user additions. Use internal bash
# globbing instead of external grep binary.
safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
match_lhs=""
[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
[[ -z ${match_lhs} ]] &&
type -P dircolors >/dev/null &&
match_lhs=$(dircolors --print-database)
[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
if ${use_color}; then
# Enable colors for ls, etc. Prefer ~/.dir_colors #64489
if type -P dircolors >/dev/null; then
if [[ -f ~/.dir_colors ]]; then
eval $(dircolors -b ~/.dir_colors)
elif [[ -f /etc/DIR_COLORS ]]; then
eval $(dircolors -b /etc/DIR_COLORS)
fi
fi
alias ls='ls --color=auto'
alias grep='grep --colour=auto'
alias egrep='egrep --colour=auto'
alias fgrep='fgrep --colour=auto'
fi
unset use_color safe_term match_lhs sh
xhost +local:root >/dev/null 2>&1
complete -cf sudo
# Bash won't get SIGWINCH if another process is in the foreground.
# Enable checkwinsize so that bash will check the terminal size when
# it regains control. #65623
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
shopt -s checkwinsize
# allows completion for aliases
shopt -s expand_aliases
# Enable history appending instead of overwriting. #139609
shopt -s histappend
# Functions
prompt_git() {
local s=''
local branchName=''
# Check if the current directory is in a Git repository.
if [ $(
git rev-parse --is-inside-work-tree &>/dev/null
echo "${?}"
) == '0' ]; then
# check if the current directory is in .git before running git checks
if [ "$(git rev-parse --is-inside-git-dir 2>/dev/null)" == 'false' ]; then
# Ensure the index is up to date.
git update-index --really-refresh -q &>/dev/null
# Check for uncommitted changes in the index.
if ! $(git diff --quiet --ignore-submodules --cached); then
s+='+'
fi
# Check for unstaged changes.
if ! $(git diff-files --quiet --ignore-submodules); then
s+='!'
fi
# Check for untracked files.
if [ -n "$(git ls-files --others --exclude-standard)" ]; then
s+='?'
fi
# Check for stashed files.
if $(git rev-parse --verify refs/stash &>/dev/null); then
s+='$'
fi
fi
# Get the short symbolic ref.
# If HEAD isn’t a symbolic ref, get the short SHA for the latest commit
# Otherwise, just give up.
branchName="$(git symbolic-ref --quiet --short HEAD 2>/dev/null ||
git rev-parse --short HEAD 2>/dev/null ||
echo '(unknown)')"
[ -n "${s}" ] && s="[${s}]"
echo -e "${1}${branchName}${2}${s}"
else
return
fi
}
up() { # moves up a number of dirs specified
local d=""
limit=$1
for ((i = 1; i <= limit; i++)); do
d=$d/..
done
d=$(echo $d | sed 's/^\///')
if [ -z "$d" ]; then
d=..
fi
cd $d
}
ex() { # attempts to extract input file
if [ -f $1 ]; then
case $1 in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xf $1 ;;
*.tbz2) tar xjf $1 ;;
*.tgz) tar xzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo "'$1' cannot be extracted via ex()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
# End Functions
# Aliases
alias cp="cp -i" # confirm before overwriting something
alias df='df -h' # human-readable sizes
alias du='du -h' # ditto
alias free='free -m' # show sizes in MB
alias rm='rm -iv' # confirm before deletion
alias ':q'=exit
alias ':e'=vim
alias vi=vim
# alias for git directory belonging to my dotfiles
alias config='/usr/bin/git --git-dir=$HOME/.config/dotfiles/ --work-tree=$HOME'
# End Aliases
# Prompt
if tput setaf 1 &>/dev/null; then
bold="$(tput bold)"
dim="$(tput dim)"
underline="$(tput setaf 0)"
blink="$(tput blink)"
invert="$(tput rev)"
reset="\e[0m"
black="$(tput setaf 0)"
darkgray="$(tput setaf 8)"
red="$(tput setaf 1)"
lightred="$(tput setaf 9)"
green="$(tput setaf 2)"
lightgreen="$(tput setaf 10)"
yellow="$(tput setaf 3)"
lightyellow="$(tput setaf 11)"
blue="$(tput setaf 4)"
lightblue="$(tput setaf 12)"
purple="$(tput setaf 5)"
lightpurple="$(tput setaf 13)"
cyan="$(tput setaf 6)"
lightcyan="$(tput setaf 14)"
white="$(tput setaf 7)"
lightgray="$(tput setaf 15)"
fi
# Highlight the user name when logged in as root.
if [[ "${USER}" == "root" ]]; then
userStyle="${bold}${red}"
else
userStyle="${bold}${lightyellow}"
fi
# Highlight the hostname when connected via SSH.
if [[ "${SSH_TTY}" ]]; then
hostStyle="${bold}${red}"
else
hostStyle="${bold}${cyan}"
fi
PS1="\[${reset}\]" # begin prompt; prevent commands affecting it
PS1+="\[${white}\][" # opening bracket
PS1+="\[${userStyle}\]\u" # username
PS1+="\[${white}\]@" # connection btwn user and host
PS1+="\[${hostStyle}\]\h" # host
PS1+="\[${reset}\]" # clear formatting for user/host
PS1+="\[${lightgreen}\] \w" # working directory full path
PS1+="\$(prompt_git \"\[${white}\] on \[${lightred}\]\" \"\[${lightred}\]\")" # Git repository details
PS1+="\[${white}\]]\$ " # closing bracket
PS1+="\[${reset}\]" # clear for user input
export PS1
PS2="\[${white}\]> \[${reset}\]"
export PS2
# End Prompt
export EDITOR='vim'
export BROWSER='firefox'