-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
203 lines (153 loc) · 4.13 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
########################################################################
# global settings
#
test "$OSTYPE" = "linux" -a -r /etc/profile && . /etc/profile
########################################################################
# what is my real home?
#
UHOME=${TTY_HOME:-$HOME}
export UHOME
########################################################################
# functions
#
path-prepend() {
local dir
for dir in "$@"; do
echo $PATH | grep -E "(^|:)$dir" >/dev/null 2>&1 || {
test -d $dir && PATH=$dir${PATH:+:$PATH}
}
done
}
path-append() {
local dir
for dir in "$@"; do
echo $PATH | grep -E "(^|:)$dir" >/dev/null 2>&1 || {
test -d $dir && PATH=${PATH:+$PATH:}$dir
}
done
}
########################################################################
# path
#
path-prepend $UHOME/.local/bin $UHOME/bin
export PATH
########################################################################
# environment settings
#
HISTCONTROL=ignoredups
HISTFILE=
HISTFILESIZE=0
HISTSIZE=9999
export HISTCONTROL HISTFILE HISTFILESIZE HISTSIZE
test -z "$LC_ALL" && LC_ALL=en_US.UTF-8
export LC_ALL
########################################################################
# shell-specific settings
#
case "$SHELL" in
*/bin/ksh)
HOSTNAME=`hostname | sed 's/\..*//'`
export HOSTNAME
PS1='$LOGNAME@$HOSTNAME:$PWD\$ '
export PS1
;;
*/bin/bash)
PS1='\u@\h:\w\$ '
export PS1
;;
esac
########################################################################
# interactive mode settings
#
case "$-" in
*i*)
####################################################################
# interactive environment
#
env which git &>/dev/null && {
GIT_PAGER=
export GIT_PAGER
}
env which go &>/dev/null && {
GOPATH=$UHOME/.local/lib/go
export GOPATH
path-prepend $GOPATH/bin
}
test -r $UHOME/.inputrc && {
INPUTRC=$UHOME/.inputrc
export INPUTRC
}
env which less &>/dev/null && {
LESS="-fRQ"
export LESS
PAGER=less
export PAGER
}
test -r $UHOME/.screenrc && {
SCREENRC=$UHOME/.screenrc
export SCREENRC
}
env which systemctl &>/dev/null && {
SYSTEMD_PAGER=
export SYSTEMD_PAGER
}
test -d "$UHOME/.terminfo" && {
TERMINFO="$UHOME/.terminfo"
export TERMINFO
}
SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket
export SSH_AUTH_SOCK
####################################################################
# diff
#
env which diff &>/dev/null && {
[[ "$(diff -v | awk '/diffutils/ {print $4}')" > "3.6" ]] && {
alias diff='diff --color=auto'
}
}
####################################################################
# vim
#
env which vim &>/dev/null && {
EDITOR="vim -u $UHOME/.vimrc"
VISUAL="vim -u $UHOME/.vimrc"
export EDITOR VISUAL
alias vi="vim -u $UHOME/.vimrc"
alias vim="vim -u $UHOME/.vimrc"
}
####################################################################
# aliases
#
alias grep='/bin/grep --color=auto'
alias l='/bin/ls -Al'
alias ls='/bin/ls'
env which mysql &>/dev/null && {
alias mysql='mysql -A -b'
}
env which rdesktop &>/dev/null && alias rdesktop='rdesktop -a 24 -g 1024x768 -r sound:local'
env which x11vnc &>/dev/null && alias x11vnc='x11vnc -noxrecord -rfbauth ~/.vnc/passwd'
alias cp &>/dev/null && unalias cp
alias mv &>/dev/null && unalias mv
alias rm &>/dev/null && unalias rm
####################################################################
# options
#
# turn off bash-completion because it fucking sucks
complete -r
# of the gods
set -o vi
####################################################################
# local
#
test -n "$(ls -A $UHOME/.local/profile.d 2>/dev/null)" && {
for source in $UHOME/.local/profile.d/*; do
. $source
done
}
;;
esac
########################################################################
# miscellaneous
#
# get rid of annoying command-not-found handling
unset command_not_found_handle