forked from awdeorio/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
executable file
·389 lines (338 loc) · 12.4 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
#!/bin/bash
#
# .bashrc
#
# Andrew DeOrio's Bash customizations
### Places ####################################################################
export IFSHOME=/afs/umich.edu/user/a/w/awdeorio
export NFSHOME=/net/newberry/w/awdeorio
# Umask for both scp and ssh
umask 002
# Language
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Short term
alias can="command less $HOME/Dropbox/teaching/eecs485/can.txt"
### Aliases ###################################################################
# NOTE: emacs, git, ls, and less aliases appear later
alias du="du -sh"
function dusort { find "$@" -mindepth 1 -maxdepth 1 -print0 | xargs -0 du -sh | sort -h ; }
alias df="df -h"
alias cdd="cd .."
alias grep="grep --color"
alias egrep="egrep --color"
alias fgrep="fgrep --color"
alias zgrep="zgrep --color"
alias igrep="grep -i"
alias wcl="wc -l"
alias rmb='echo "rm -vf *~ .*~" && rm -vf *~ .*~'
alias rmt='[ -d ${HOME}/.Trash/ ] && echo "rm -rvf ${HOME}/.Trash/*" && rm -rvf ${HOME}/.Trash/*'
alias rmd='[ -d ${HOME}/Downloads/ ] && echo "rm -rvf ${HOME}/Downloads/*" && rm -rvf ${HOME}/Downloads/*'
alias rme='[ -d ${HOME}/Desktop/ ] && echo "rm -rvf ${HOME}/Desktop/*" && rm -rvf ${HOME}/Desktop/*'
alias rms='[ -d ${HOME}/.ssh/ ] && echo "rm -rvf ${HOME}/.ssh/master-*" && rm -rvf ${HOME}/.ssh/master-*'
alias latex='latex -halt-on-error'
alias dftp='ssh -R 19999:localhost:22'
function dftp-get { command scp -r -P19999 "$@" localhost: ; }
alias R='R --quiet --no-save'
alias grip='grip --norefresh --browser'
alias whatismyip='curl ipinfo.io/ip'
alias weather='curl http://wttr.in/ann_arbor?Tn1'
alias weather3='curl http://wttr.in/ann_arbor?Tn | less'
alias vboxmanage=VBoxManage
alias gg='grep -r . --binary-files=without-match --exclude-dir ".git" --exclude "*~" -e'
function ff() {
find . \
-iwholename '*'$*'*' \
-not -iwholename '*/env/*' \
-not -iwholename '*/venv/*' \
-not -iwholename '*/node_modules/*' \
-not -iwholename '*/__pycache__*' \
-not -iwholename '*/tmp*' \
-not -iwholename '*.cache*' \
-not -path '*/\.*' \
;
}
alias fb="find . -name '*~'"
alias fbrm="find . -name '*~' -exec rm -v {} \;"
alias pylint='pylint --output-format=colorized'
alias gs='git status'
alias gd='git diff'
alias gr='git rebase'
alias gf='git fetch -p'
alias gb='git branch'
alias ag='ag --ignore "*bundle.js"'
alias phs='python3 -m http.server --bind localhost 8000'
alias bejs='bundle exec jekyll serve --host localhost --port 4000'
alias mogrify-1024='mogrify -resize 1024x1024'
# OSX
if which gfind &> /dev/null; then
alias find='gfind'
fi
if which mdfind &> /dev/null; then
alias locate='mdfind -name'
fi
if test -d /Applications/Google\ Chrome.app; then
alias chrome='open -a "Google Chrome" --args'
alias google-chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome'
fi
if test -d /Applications/Brave\ Browser.app; then
alias brave='open -a "Brave Browser" --args'
alias brave-private='brave --incognito'
fi
if test -d /Applications/Firefox.app; then
alias firefox='open -a Firefox --args'
alias firefox-private='open -a Firefox -n --args --private-window'
alias firefox-new-window='open -a Firefox -n --args --new-window'
fi
if [ `uname -s` = "Darwin" ]; then
alias meld='rm -rvf "${HOME}/.local/share/meld" "${HOME}/Library/Preferences/org.gnome.meld.plist" "${HOME}/Library/Saved Application State/org.gnome.meld.savedState/" && meld'
fi
if test -d /Applications/Microsoft\ Excel.app; then
alias excel='open -a Microsoft\ Excel'
fi
# diff-highlight ships with Git
DIFF_HIGHLIGHT=$(locate diff-highlight | grep 'diff-highlight/diff-highlight$' | head -n1)
if [ -n "$DIFF_HIGHLIGHT" ]; then
alias diff-highlight="$DIFF_HIGHLIGHT"
fi
### Editor ####################################################################
# export EDITOR="emacsclient -n -c" # Open a new window w/ existing daemon
export EDITOR="emacs"
export VISUAL="$EDITOR" # Here for historical reasons
export SUDO_EDITOR="emacs -nw" # Editor used by sudoedit and sudo -e
export GIT_EDITOR="emacs -nw" # Editor used by git commit
function e { emacs "$@" & }
function ediff { emacs --eval "(ediff-files \"$1\" \"$2\")" & }
### Pager #####################################################################
export PAGER="less --shift 5 --ignore-case --chop-long-lines --RAW-CONTROL-CHARS --LONG-PROMPT"
alias less="${PAGER}"
export LESSOPEN="| lesspipe.sh %s"
### GPG, SSH and paswords ###################################################
# Start gpg-agent and connect SSH agent only if secret keys are available
if gpg --list-secret-keys awdeorio &> /dev/null; then
export GPG_TTY=$(tty)
gpgconf --launch gpg-agent
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
fi
### Path stuff ################################################################
# remove item from $PATH
path-remove () {
local IFS=':'
local NEWPATH
for DIR in $PATH; do
if [ "$DIR" != "$1" ]; then
NEWPATH=${NEWPATH:+$NEWPATH:}$DIR
fi
done
export PATH=${NEWPATH};
}
# add item to end of $PATH, uniquely
path-append () {
[ -d $1 ] || return 1 # make sure directory exists
path-remove $1 # remove the directory
export PATH=${PATH}:${1} # append the directory
}
# add item to beginning of $PATH, uniquely
path-prepend () {
[ -d $1 ] || return 1 # make sure directory exists
path-remove $1 # remove the directory
export PATH=${1}:${PATH} # append the directory
}
path-append /usr/local/bin
path-append /usr/local/sbin
path-append /usr/bin
path-append /usr/sbin
path-append /bin
path-append /sbin
path-prepend ${HOME}/bin
path-prepend ${HOME}/local/bin
path-prepend ${HOME}/local/sbin
path-append /usr/caen/bin
path-append /usr/um/bin
### local tool installs ########################################################
[ -d ${HOME}/local/lib ] && export LIBARY_PATH=${LIBRARY_PATH}:${HOME}/local/lib
[ -d ${HOME}/local/lib ] && export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${HOME}/local/lib
[ -d ${HOME}/local/lib ] && export LD_RUN_PATH=${LD_RUN_PATH}:${HOME}/local/lib
[ -d ${HOME}/local/include ] && export CPATH=${CPATH}:${HOME}/local/include
[ -d ${CPATH} ] && export C_INCLUDE_PATH=${C_INCLUDE_PATH}:${CPATH}
[ -d ${CPATH} ] && export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}:${CPATH}
[ -d ${HOME}/local/man ] && export MANPATH=${HOME}/local/man:${MANPATH}
# OSX GNU Coreutils
path-prepend /usr/local/opt/coreutils/libexec/gnubin
if [ -d /usr/local/opt/coreutils/libexec/gnuman ]; then
export MANPATH=/usr/local/opt/coreutils/libexec/gnuman:$MANPATH
fi
# local perl module installs
if [ -d ${HOME}/local/lib/perl5 ]; then
PERL5LIB=${PERL5LIB}:${HOME}/local/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi
PERL5LIB=${PERL5LIB}:${HOME}/local/lib/perl5/site_perl/5.8.8
PERL5LIB=${PERL5LIB}:${HOME}/local/lib/perl5/site_perl
PERL5LIB=${PERL5LIB}:${HOME}/local/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi
PERL5LIB=${PERL5LIB}:${HOME}/local/lib/perl5/vendor_perl/5.8.8
PERL5LIB=${PERL5LIB}:${HOME}/local/lib/perl5/vendor_perl
PERL5LIB=${PERL5LIB}:${HOME}/local/lib64/perl5/5.8.8/x86_64-linux-thread-multi
PERL5LIB=${PERL5LIB}:${HOME}/local/lib/perl5/5.8.8
export PERL5LIB;
fi
# Python
path-append ${HOME}/.pyenv/shims
# for DIR in "$(ls -d /usr/local/opt/python@*/bin)"; do
# path-append "${DIR}"
# done
# if command -v pyenv 1>/dev/null 2>&1; then
# eval "$(pyenv init -)"
# fi
# Pytest bash completion
# https://docs.pytest.org/en/latest/bash-completion.html
# $ pip3 install argcomplete
if type -a register-python-argcomplete &> /dev/null; then
eval "$(register-python-argcomplete pytest)"
fi
# SQLite3 on macOS
if [ -d /usr/local/opt/sqlite/bin ]; then
path-append /usr/local/opt/sqlite/bin
fi
# CCache
path-prepend /usr/lib/ccache/bin || path-prepend /usr/lib/ccache
# Go (golang)
export GOPATH=${HOME}/.go
if type -a go &> /dev/null; then
path-append ${GOPATH}/bin
path-append $(go env GOROOT)/bin
fi
# Ruby
# export GEM_HOME=${HOME}/.gem
# path-append ${GEM_HOME}/bin
path-prepend "/usr/local/opt/ruby/bin"
GEM_BIN=$(gem env | grep 'EXECUTABLE DIRECTORY' | awk '{print $NF}')
path-append ${GEM_BIN}
################################################################################
# Test for an interactive shell. There is no need to set anything past this
# point for scp and rcp, and it's important to refrain from outputting anything
# in those cases.
[[ $- != *i* ]] && return
### Printing ##################################################################
# enscript --margins=left:right:top:bottom in postscript points
# the following gives L=R=T=B=1in
export ENSCRIPT='--media=Letter --word-wrap --margins=72:72:72:72'
### Prompt Look and Feel ######################################################
set -o emacs # emacs commandline mode
set -o history # enable up-arrow command history
export HISTIGNORE="&:ls:cd:bg:fg:ll" # ignore these commands in history
export HISTCONTROL="ignoredups" # ignore duplicates in history
export FIGNORE="~" # don't show these prefixes in tab-comp
shopt -s checkwinsize # keep LINES and COLUMNS up to date
function find_git_context() {
# Based on https://github.com/jimeh/git-aware-prompt
# Branch
local BRANCH
local GIT_BRANCH
if BRANCH=$(git rev-parse --abbrev-ref HEAD 2> /dev/null); then
if [[ "$branch" == "HEAD" ]]; then
BRANCH='detached*'
fi
GIT_BRANCH="$BRANCH"
else
GIT_BRANCH=""
fi
# '*' for dirty
local STATUS=$(git status --porcelain 2> /dev/null)
local GIT_DIRTY
if [[ "$STATUS" != "" ]]; then
GIT_DIRTY='*'
else
GIT_DIRTY=''
fi
# Concatenate
GIT_CONTEXT="${GIT_BRANCH}${GIT_DIRTY}"
}
function ps1_context {
# For any of these bits of context that exist, display them and append
# a space. Ref: https://gist.github.com/datagrok/2199506
VIRTUAL_ENV_BASE=`basename "$VIRTUAL_ENV"`
find_git_context
for v in "${GIT_CONTEXT}" \
"${debian_chroot}" \
"${VIRTUAL_ENV_BASE}" \
"${GIT_DIRTY}" \
"${PS1_CONTEXT}"; do
echo -n "${v:+$v }"
done
}
# Fancy Prompt
source ~/.bashrc_colors
case "$TERM" in
xterm*|rxvt*|Eterm*|eterm*|screen*)
# If the terminal supports colors, then use fancy terminal
if [ "$LOGNAME" == "root" ]; then
# root
PS1='\[${bldred}\]\]\u@\h \[${bldblue}\]\W\n\$ \[${txtrst}\]'
elif [ "$SSH_CONNECTION" ]; then
# remote machines
PS1='\[${txtblk}\]$(ps1_context)\[${bldcyn}\]\u@\h \[${bldblu}\]\W\n\$ \[${txtrst}\]'
else
# local machine
PS1='\[${txtpur}\]$(ps1_context)\[${bldgrn}\]\u@\h \[${bldblu}\]\W\n\$ \[${txtrst}\]'
fi
;;
*)
# Default no color, no fanciness
PS1='$ '
;;
esac
export PS1
# Change the window title of X terminals
case "$TERM" in
xterm*|rxvt*|Eterm*|eterm*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
;;
screen*)
PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\033\\"'
;;
esac
export PROMPT_COMMAND
# Colorized output
LS=ls
if which gls &> /dev/null; then
# GNU ls on OSX
LS=gls
fi
if `ls --version | grep -q GNU &> /dev/null`; then
# GNU ls
eval `dircolors -b ${HOME}/.DIR_COLORS`
LSOPT="--color=auto --human-readable --quoting-style=literal --ignore-backups --ignore $'Icon\r'"
else
# BSD ls
# -G is for color
LSOPT="-G"
fi
alias ls="${LS} -h ${LSOPT}"
alias ll="${LS} -h -l ${LSOPT}"
alias la="${LS} -h -A ${LSOPT}"
### Homebrew package manager customization ###################################
if which brew &> /dev/null; then
export HOMEBREW_NO_AUTO_UPDATE=1
eval $(brew shellenv)
fi
### Bash-completion ###########################################################
if which brew &>/dev/null && [[ -f $(brew --prefix)/etc/bash_completion ]]; then
# OS X
. $(brew --prefix)/etc/bash_completion
elif [[ $PS1 && -f /usr/share/bash-completion/bash_completion ]]; then
. /usr/share/bash-completion/bash_completion
fi
for F in `find ${HOME}/.bash_completion.d/ -type f`; do
source $F
done
### Disable warning default shell xsh on macOS Catalina and higher
if [ `uname -s` = "Darwin" ]; then
export BASH_SILENCE_DEPRECATION_WARNING=1
fi
### Git customization #########################################################
# Alias "g" to "git" and don't break bash completion
alias g=git
complete -o bashdefault -o default -o nospace -F _git g 2>/dev/null \
|| complete -o default -o nospace -F _git g
# Clear History at the very end
history -c