forked from MikeMcQuaid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshrc.sh
executable file
·245 lines (203 loc) · 5.31 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
#!/bin/sh
# shellcheck disable=SC2155
# 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'
# Print field by number
field() {
ruby -ane "puts \$F[$1]"
}
# Setup paths
remove_from_path() {
[ -d "$1" ] || return
PATHSUB=":$PATH:"
PATHSUB=${PATHSUB//:$1:/:}
PATHSUB=${PATHSUB#:}
PATHSUB=${PATHSUB%:}
export PATH="$PATHSUB"
}
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() {
command -v "$1" >/dev/null
}
add_to_path_start "/usr/local/bin"
add_to_path_start "/usr/local/sbin"
add_to_path_end "$HOME/.dotfiles/bin"
add_to_path_end "$HOME/.gem/ruby/2.6.0/bin"
# Setup Go development
export GOPATH="$HOME/.gopath"
add_to_path_end "$GOPATH/bin"
# Run rbenv if it exists
quiet_which rbenv && add_to_path_start "$(rbenv root)/shims"
# 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 rg="rg --colors 'match:style:nobold' --colors 'path:style:nobold'"
alias be="noglob bundle exec"
alias sha256="shasum -a 256"
# Platform-specific stuff
if quiet_which brew
then
export HOMEBREW_PREFIX="$(brew --prefix)"
export HOMEBREW_REPOSITORY="$(brew --repo)"
export HOMEBREW_AUTO_UPDATE_SECS=3600
export HOMEBREW_DEVELOPER=1
export HOMEBREW_UPDATE_REPORT_ONLY_INSTALLED=1
export HOMEBREW_BUNDLE_BREW_SKIP="rakudo-star nss aws-iam-authenticator docker docker-machine awscli awssume imagemagick [email protected] [email protected] container-diff"
export HOMEBREW_BUNDLE_CASK_SKIP="zulu8 github/bootstrap/zulu8"
export HOMEBREW_GIT_FILTER_TREE_ZERO=1
export HOMEBREW_BOOTSNAP=1
alias hbc='cd $HOMEBREW_REPOSITORY/Library/Taps/homebrew/homebrew-core'
fi
if [ "$MACOS" ]
then
export GREP_OPTIONS="--color=auto"
export CLICOLOR=1
export GITHUB_USE_HOMEBREW_BINARIES=1
export HOMEBREW_GITHUB_USE_HOMEBREW_BINARIES=1
export GITHUB_NO_AUTO_BOOTSTRAP=1
export BOOTSTRAP_DISABLE_ISSUES=1
export GITHUB_PROFILE_BOOTSTRAP=1
if quiet_which diff-so-fancy
then
# shellcheck disable=SC2016
export GIT_PAGER='diff-so-fancy | less -+$LESS -RX'
else
# shellcheck disable=SC2016
export GIT_PAGER='less -+$LESS -RX'
fi
if quiet_which exa
then
alias ls="exa --classify --group --git"
else
alias ls="ls -F"
fi
if quiet_which bat
then
export BAT_THEME="ansi-light"
alias cat="bat"
fi
if quiet_which prettyping
then
alias ping="prettyping --nolegend"
fi
if quiet_which htop
then
alias top="sudo htop"
fi
if quiet_which ncdu
then
alias du="ncdu --color dark -rr"
fi
add_to_path_end "$HOMEBREW_PREFIX/opt/git/share/git-core/contrib/diff-highlight"
add_to_path_end "/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
alias fork="/Applications/Fork.app/Contents/Resources/fork_cli"
alias vmrun="/Applications/VMware Fusion.app/Contents/Public/vmrun"
alias locate="mdfind -name"
alias finder-hide="setfile -a V"
find() {
local arg
local path_arg
local dot_arg
for arg
do
[[ $arg =~ "^-" ]] && break
path_arg="$arg"
done
[ -z "$path_arg" ] && dot_arg="."
command find $dot_arg "$@"
}
rbenv-nodenv-homebrew-sync
elif [ "$LINUX" ]
then
quiet_which keychain && eval "$(keychain -q --eval --agents ssh id_rsa)"
add_to_path_end "/data/github/shell/bin"
alias su="/bin/su -"
alias ls="ls -F --color=auto"
alias open="xdg-open"
elif [ "$WINDOWS" ]
then
alias ls="ls -F --color=auto"
open() {
# shellcheck disable=SC2145
cmd /C"$@"
}
fi
# Set up editor
if quiet_which code
then
export EDITOR="code"
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
alias e="$EDITOR"
# Run dircolors if it exists
quiet_which dircolors && eval "$(dircolors -b)"
# More colours with grc
# shellcheck disable=SC1090
[ -f "$HOMEBREW_PREFIX/etc/grc.bashrc" ] && source "$HOMEBREW_PREFIX/etc/grc.bashrc"
# Save directory changes
cd() {
builtin cd "$@" || return
[ "$TERMINALAPP" ] && command -v set_terminal_app_pwd >/dev/null \
&& set_terminal_app_pwd
pwd > "$HOME/.lastpwd"
ls
}
# Use ruby-prof to generate a call stack
ruby-call-stack() {
ruby-prof --printer=call_stack --file=call_stack.html -- "$@"
}
# Pretty-print JSON files
json() {
[ -n "$1" ] || return
cat "$1" | jq .
}
# Pretty-print Homebrew install receipts
receipt() {
[ -n "$1" ] || return
json "$HOMEBREW_PREFIX/opt/$1/INSTALL_RECEIPT.json"
}
# Move files to the Trash folder
trash() {
mv "$@" "$HOME/.Trash/"
}
# GitHub API shortcut
github-api-curl() {
noglob curl -H "Authorization: token $GITHUB_TOKEN" "https://api.github.com/$1"
}