forked from MikeMcQuaid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshrc.sh
executable file
·258 lines (219 loc) · 6.52 KB
/
shrc.sh
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
#!/bin/sh
# 077 would be more secure, but 022 is more useful.
umask 022
# Save more history
export HISTSIZE=100000
export SAVEHIST=100000
# OS variables
[ $(uname -s) = "Darwin" ] && export OSX=1 && export UNIX=1
[ $(uname -s) = "Linux" ] && export LINUX=1 && export UNIX=1
uname -s | grep -q "_NT-" && export WINDOWS=1
# Fix systems missing $USER
[ -z "$USER" ] && export USER=$(whoami)
# Colourful manpages
export LESS_TERMCAP_mb=$'\E[01;31m'
export LESS_TERMCAP_md=$'\E[01;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_so=$'\E[01;44;33m'
export LESS_TERMCAP_ue=$'\E[0m'
export LESS_TERMCAP_us=$'\E[01;32m'
# Set to avoid `env` output from changing console colour
export LESS_TERMEND=$'\E[0m'
# Count CPUs for Make jobs
if [ $OSX ]
then
export CPUCOUNT=$(sysctl -n hw.ncpu)
elif [ $LINUX ]
then
export CPUCOUNT=$(getconf _NPROCESSORS_ONLN)
else
export CPUCOUNT="1"
fi
if [ "$CPUCOUNT" -gt 1 ]
then
export MAKEFLAGS="-j$CPUCOUNT"
fi
# Load Homebrew GitHub API key
[ -s ~/.brew_github_api ] && export HOMEBREW_GITHUB_API_TOKEN=$(cat ~/.brew_github_api)
# Print field by number
field() {
awk {print\ \$$1}
}
# Setup Boxen
[ -d /opt/boxen ] && source /opt/boxen/env.sh
# Setup paths
remove_from_path() {
[ -d $1 ] || return
# Doesn't work for first item in the PATH but don't care.
export PATH=$(echo $PATH | sed -e "s|:$1||") 2>/dev/null
}
add_to_path_start() {
[ -d $1 ] || return
remove_from_path "$1"
export PATH="$1:$PATH"
}
add_to_path_end() {
[ -d "$1" ] || return
remove_from_path "$1"
export PATH="$PATH:$1"
}
force_add_to_path_start() {
remove_from_path "$1"
export PATH="$1:$PATH"
}
quiet_which() {
which $1 1>/dev/null 2>/dev/null
}
add_to_path_end "$HOME/Documents/Scripts"
add_to_path_end "$HOME/Scripts"
add_to_path_end "$HOME/Library/Python/2.7/bin"
add_to_path_end "$HOME/.gem/ruby/2.0.0/bin"
add_to_path_end "$HOME/.gem/ruby/1.8/bin"
add_to_path_end "$HOME/.rbenv/bin"
add_to_path_end "$HOME/.cabal/bin"
add_to_path_end "$HOME/Applications/SublimeText2"
add_to_path_end "/c/Program Files/Sublime Text 2"
add_to_path_end "/Applications/GitX.app/Contents/Resources"
add_to_path_end "/Applications/TextMate.app/Contents/Resources"
add_to_path_start "$HOME/.homebrew/bin"
add_to_path_start "$HOME/.homebrew/sbin"
add_to_path_start "/usr/local/bin"
add_to_path_start "/usr/local/sbin"
# Run rbenv if it exists
quiet_which rbenv && add_to_path_start "$(rbenv root)/shims"
force_add_to_path_start "bin"
quiet_which ack-grep && alias ack=ack-grep
export DIFF=diff
quiet_which colordiff && export DIFF=colordiff && alias diff=colordiff
# Aliases
alias mkdir="mkdir -vp"
alias df="df -H"
alias rm="rm -iv"
alias mv="mv -iv"
alias zmv="noglob zmv -vW"
alias cp="cp -irv"
alias du="du -sh"
alias make="nice make"
alias less="less --ignore-case --raw-control-chars"
alias rsync="rsync --partial --progress --human-readable --compress"
alias rake="noglob rake"
alias be="noglob bundle exec"
alias gist="gist --open --copy"
alias z="zeus"
quiet_which git && export HOMEBREW_SOURCEFORGE_USERNAME="$(git config sourceforge.username)"
alias upbrew="scp-to-http.sh $HOMEBREW_SOURCEFORGE_USERNAME,machomebrew frs.sourceforge.net /home/frs/project/m/ma/machomebrew/Bottles $(brew --cache)"
alias upmirror="scp-to-http.sh $HOMEBREW_SOURCEFORGE_USERNAME,machomebrew frs.sourceforge.net /home/frs/project/m/ma/machomebrew/mirror"
alias svn="svn-git.sh"
# Platform-specific stuff
if quiet_which brew
then
export BREW_PREFIX=$(brew --prefix)
export ANDROID_SDK_ROOT=$BREW_PREFIX/opt/android-sdk
export ANDROID_HOME=$ANDROID_SDK_ROOT
export HOMEBREW_DEVELOPER=1
alias brew="nice brew"
alias bpi="brew pull --install"
fi
if [ $OSX ]
then
export GREP_OPTIONS="--color=auto"
export CLICOLOR=1
export GIT_PAGER='less -+$LESS -FRX'
add_to_path_end /Applications/Xcode.app/Contents/Developer/usr/bin
add_to_path_end /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
alias ls="ls -F"
alias ql="qlmanage -p 1>/dev/null"
alias locate="mdfind -name"
alias cpwd="pwd | tr -d '\n' | pbcopy"
alias vmware-shrink="sudo /Library/Application\ Support/VMware\ Tools/vmware-tools-cli disk shrinkonly"
alias remove-open-with-duplicates="/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user"
alias finder-hide="setfile -a V"
# Old default Curl is broken for Git on Leopard.
[ "$OSTYPE" = "darwin9.0" ] && export GIT_SSL_NO_VERIFY=1
elif [ $LINUX ]
then
quiet_which keychain && eval `keychain -q --eval --agents ssh id_rsa`
alias su="/bin/su -"
alias ls="ls -F --color=auto"
alias open="xdg-open"
alias agdu="sudo apt-get dist-upgrade"
elif [ $WINDOWS ]
then
quiet_which plink && alias ssh="plink -l $(git config shell.username)"
alias ls="ls -F --color=auto"
open() {
cmd /C"$@"
}
fi
# Set up editor
if [ -n "${SSH_CONNECTION}" ] && quiet_which rmate
then
export EDITOR="rmate"
export GIT_EDITOR="$EDITOR -w"
export SVN_EDITOR=$GIT_EDITOR
elif quiet_which mate
then
export EDITOR="mate"
export GIT_EDITOR="$EDITOR -w"
export SVN_EDITOR="$GIT_EDITOR"
elif quiet_which subl || quiet_which sublime_text
then
quiet_which subl && export EDITOR="subl"
quiet_which sublime_text && export EDITOR="sublime_text" \
&& alias subl="sublime_text"
export GIT_EDITOR="$EDITOR -w"
export SVN_EDITOR="$GIT_EDITOR"
elif quiet_which vim
then
export EDITOR="vim"
elif quiet_which vi
then
export EDITOR="vi"
fi
# Run dircolors if it exists
quiet_which dircolors && eval $(dircolors -b)
# Aliases using variables
alias ed="$EDITOR"
# Save directory changes
cd() {
builtin cd "$@" || return
[ $TERMINALAPP ] && which set_terminal_app_pwd &>/dev/null \
&& set_terminal_app_pwd
pwd > ~/.lastpwd
ls
}
# Output whether the dependencies for a Homebrew package are bottled.
brew_bottled_deps() {
for DEP in "$@"; do
echo "$DEP deps:"
brew deps $DEP | xargs brew info | grep stable
[ "$#" -ne 1 ] && echo
done
}
# Remove multiple Git remote branches at once
git_remove_remote_branches() {
REMOTE="$1"
for BRANCH in "$@"
do
[ "$BRANCH" = "$REMOTE" ] && continue
git push "$REMOTE" ":$BRANCH"
done
}
alias grrb="git_remove_remote_branches"
# Stop Boxen and /usr/local Homebrew's from fighting.
boxen-brew() {
OLDPATH="$PATH"
remove_from_path "/usr/local/bin"
remove_from_path "/usr/local/sbin"
$BOXEN_HOME/homebrew/bin/brew $@
export PATH="$OLDPATH"
}
brew() {
shift
OLDPATH="$PATH"
remove_from_path "/opt/boxen/bin"
remove_from_path "/opt/boxen/homebrew/bin"
/usr/local/bin/brew $@
export PATH="$OLDPATH"
}