-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
257 lines (209 loc) · 8.51 KB
/
.bash_profile
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
#!/bin/bash
# Custom .bash_profile for OSX / Linux / Unix machines w/ bash or dash
#
# This requires some things to be installed:
# homebrew:
# brew bundle --file $HOME/Code/dotfiles/Brewfile
#
#########################################################################
# source the global definitions
#########################################################################
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
#########################################################################
# Custom Environment Variables
#########################################################################
# Load everything in HOME/.env/
# -- these are all basic shell scripts w/ exports
if [ -d "${HOME}/.env" ]; then
# load the dotenv directory files
for file in "${HOME}/.env/"*; do
if [ -f "$file" ]; then
echo "Loading $file"
. "$file"
fi
done
fi
###############################################################################
# HOMEBREW PATH SETUP -- needed for M4 chipset #
###############################################################################
if [ -e "/opt/homebrew/bin" ]; then
export PATH=/opt/homebrew/bin:$PATH
fi
###############################################################################
# ENABLE BASH COMPLETION #
###############################################################################
# homebrew specific bash completion
if type brew &>/dev/null; then
HOMEBREW_PREFIX="$(brew --prefix)"
if [ -r "${HOMEBREW_PREFIX}/etc/profile.d/bash_completion.sh" ]; then
source "${HOMEBREW_PREFIX}/etc/profile.d/bash_completion.sh"
else
for COMPLETION in "${HOMEBREW_PREFIX}/etc/bash_completion.d/"*; do
[[ -r "$COMPLETION" ]] && source "$COMPLETION"
done
fi
# terraform completion via the terraform bin
if [ -e "${HOMEBREW_PREFIX}/bin/terraform" ]; then
complete -C "${HOMEBREW_PREFIX}/bin/terraform" terraform
fi
# The next line enables shell command completion for gcloud.
if [ -f "${HOMEBREW_PREFIX}/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" ]; then
source "${HOMEBREW_PREFIX}/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc";
fi
# awscli completion
if [ -e "${HOMEBREW_PREFIX}/bin/aws_completer" ]; then
complete -C "${HOMEBREW_PREFIX}/bin/aws_completer" aws
fi
# hashicorp vault bash completions
if [ -e "${HOMEBREW_PREFIX}/bin/vault" ]; then
complete -C "${HOMEBREW_PREFIX}/bin/vault" vault
fi
fi
#########################################################################
# aliases ftw!!!
#########################################################################
if [ `uname` == "Darwin" ]; then
# color on BSD version of bash works differently
alias ls='ls -GF'
else
# default to the linux/gnu way of doing things!
alias ls='ls -F --color="always"'
fi
alias l='ls -la'
alias l.='ls -d .*'
alias ll='ls -l'
alias la='ls -la'
alias c='clear'
alias g='grep'
alias h='history'
alias hg='history|grep'
alias m='more'
alias p='ps auxwww'
alias pg='ps auxwww | grep'
# we all hate vi, so if vim is installed default to that as the vi editor
if [ -e "`which vim`" ]; then
alias vi="vim"
fi
# if git exists, let's fix our stupid typos ;)
if [ -e "`which git`" ]; then
alias got="git"
alias gc="git checkout"
alias gcb="git checkout -b"
alias gm="git merge"
fi
# if we have hub installed; use it instead of git
if [ -e $(brew --prefix)bin/hub ]; then
alias git="hub"
fi
# kubernetes stuff here son!
if [ -e $(brew --prefix)/bin/kubectl ]; then
alias k='kubectl'
complete -F __start_kubectl k
fi
if [ -e $(brew --prefix)/bin/kubectx ]; then
alias kctx='kubectx'
fi
if [ -e $(brew --prefix)/bin/kubens ]; then
alias kns='kubens'
fi
#########################################################################
## My OSX Specific Aliases here ##
#########################################################################
if [ `uname` == "Darwin" ]; then
# Check for MacVim and setup alias if found
if [ -e "/usr/local/opt/macvim/MacVim.app" ]; then
alias vim="/usr/local/opt/macvim/MacVim.app/Contents/MacOS/Vim"
alias gvim="mvim"
fi
# Check for Sublime Text and setup alias if found
if [ -e "/Applications/Sublime Text.app" ]; then
alias subl='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'
fi
fi
########################################################################
# Custom Pathes go here yo!
########################################################################
export PATH=$HOME/bin:/usr/local/sbin:$PATH
if [ -e "/Applications/Postgres.app" ]; then
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.3/bin
fi
if [ -e "/usr/local/mysql" ]; then
export PATH="$PATH:/usr/local/mysql:/usr/local/mysql/bin"
fi
if [ -e "/Applications/Visual Studio Code.app" ]; then
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
fi
if [ -d "$HOME/.krew/" ]; then
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
fi
# add the google sdk cli tools to the path
# -- must be installed via homebrew for this to work
if [ -e "${HOMEBREW_PREFIX}/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" ]; then
source "${HOMEBREW_PREFIX}/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc"
fi
# go development related
export GOPATH="${HOME}/.go"
export GOROOT="$(brew --prefix golang)/libexec"
export PATH="$PATH:$GOPATH/bin:${GOROOT}/bin"
########################################################################
# Helper Functions and Stuff!!!
########################################################################
# password generation function
genpasswd() {
local l=$1
[ "$l" == "" ] && l=16
if [ `uname` == "Darwin" ]; then
LC_CTYPE=C && LANG=C tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
else
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
fi
}
###############################################################################
# CUSTOM PROMPTS SON! #
###############################################################################
# add kube_ps1 function for a Bash prompt / PS1 for k8s
if [ -f "${HOMEBREW_PREFIX}/opt/kube-ps1/share/kube-ps1.sh" ]; then
source "${HOMEBREW_PREFIX}/opt/kube-ps1/share/kube-ps1.sh"
fi
# customize Git prompt below with kube_ps1
function prompt_callback() {
echo -n " $(kube_ps1)"
}
# Bash prompt / PS1 for Git -- prompt is dynamic and uses prompt_callback above
if [ -f "${HOMEBREW_PREFIX}/opt/bash-git-prompt/share/gitprompt.sh" ]; then
__GIT_PROMPT_DIR="${HOMEBREW_PREFIX}/opt/bash-git-prompt/share"
source "${HOMEBREW_PREFIX}/opt/bash-git-prompt/share/gitprompt.sh"
export GIT_PROMPT_SHOW_UPSTREAM=1
fi
###############################################################################
# iTerm2 / iTerm2 Preferences #
###############################################################################
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
###############################################################################
# virtualenvwrapper setup here #
###############################################################################
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
export PROJECT_HOME=$HOME/Devel
source /usr/local/bin/virtualenvwrapper.sh
###############################################################################
# ruby virtual environments #
###############################################################################
#source $(brew --prefix)/opt/chruby/share/chruby/chruby.sh
#source $(brew --prefix)/opt/chruby/share/chruby/auto.sh
#chruby ruby-3.1.3
eval "$(rbenv init - bash)"
###############################################################################
# Environment Hook #
###############################################################################
eval "$(direnv hook bash)"
eval "$(${HOMEBREW_PREFIX}/bin/brew shellenv)"
###############################################################################
# BAH
###############################################################################
# this is for node 20 [homebrew node is v22 - 09242024]
if [ -e "/usr/local/opt/node@20/bin/" ]; then
export PATH="/usr/local/opt/node@20/bin:$PATH"
fi