-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.zshrc
380 lines (300 loc) · 18.9 KB
/
.zshrc
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
# Use beam shape cursor on startup.
# must go before instant prompt initialization
>$TTY echo -ne '\e[6 q'
# disable alacritty dock bouncing https://github.com/alacritty/alacritty/issues/2950
printf "\e[?1042l"
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# Start configuration added by Zim install {{{
#
# User configuration sourced by interactive shells
#
# -----------------
# Zsh configuration
# -----------------
#
# History
#
# Remove older command from the history if a duplicate is to be added.
setopt HIST_IGNORE_ALL_DUPS
#
# Input/output
#
# Set editor default keymap to emacs (`-e`) or vi (`-v`)
bindkey -v
# Prompt for spelling correction of commands.
#setopt CORRECT
# Customize spelling correction prompt.
#SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? '
# Remove path separator from WORDCHARS.
WORDCHARS=${WORDCHARS//[\/]}
# --------------------
# Module configuration
# --------------------
#
# completion
#
# Set a custom path for the completion dump file.
# If none is provided, the default ${ZDOTDIR:-${HOME}}/.zcompdump is used.
zstyle ':zim:completion' dumpfile "${ZDOTDIR:-${HOME}}/.zcompdump-${ZSH_VERSION}"
#
# git
#
# Set a custom prefix for the generated aliases. The default prefix is 'G'.
#zstyle ':zim:git' aliases-prefix 'g'
#
# input
#
# Append `../` to your input for each `.` you type after an initial `..`
zstyle ':zim:input' double-dot-expand yes
#
# termtitle
#
# Set a custom terminal title format using prompt expansion escape sequences.
# See http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html#Simple-Prompt-Escapes
# If none is provided, the default '%n@%m: %~' is used.
#zstyle ':zim:termtitle' format '%1~'
#
# zsh-autosuggestions
#
# Customize the style that the suggestions are shown with.
# See https://github.com/zsh-users/zsh-autosuggestions/blob/master/README.md#suggestion-highlight-style
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=10'
#
# zsh-syntax-highlighting
#
# Set what highlighters will be used.
# See https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
# Customize the main highlighter styles.
# See https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters/main.md#how-to-tweak-it
#typeset -A ZSH_HIGHLIGHT_STYLES
#ZSH_HIGHLIGHT_STYLES[comment]='fg=10'
# ------------------
# Initialize modules
# ------------------
if [[ ! -e ${ZIM_HOME}/zimfw.zsh ]]; then
curl -fsSL --create-dirs -o ${ZIM_HOME}/zimfw.zsh \
https://github.com/zimfw/zimfw/releases/latest/download/zimfw.zsh
fi
if [[ ! ${ZIM_HOME}/init.zsh -nt ${ZDOTDIR:-${HOME}}/.zimrc ]]; then
source ${ZIM_HOME}/zimfw.zsh init -q
fi
source ${ZIM_HOME}/init.zsh
# ------------------------------
# Post-init module configuration
# ------------------------------
#
# zsh-history-substring-search
#
# Bind ^[[A/^[[B manually so up/down works both before and after zle-line-init
# bindkey '^[[A' history-substring-search-up
# bindkey '^[[B' history-substring-search-down
# Bind up and down keys
# zmodload -F zsh/terminfo +p:terminfo
# if [[ -n ${terminfo[kcuu1]} && -n ${terminfo[kcud1]} ]]; then
# bindkey ${terminfo[kcuu1]} history-substring-search-up
# bindkey ${terminfo[kcud1]} history-substring-search-down
# fi
# bindkey '^P' history-substring-search-up
# bindkey '^N' history-substring-search-down
# bindkey -M vicmd 'k' history-substring-search-up
# bindkey -M vicmd 'j' history-substring-search-down
# }}} End configuration added by Zim install
export PATH=${PATH}:~/stripe/henson/bin
export PATH=${PATH}:~/stripe/password-vault/bin
export PATH=${PATH}:~/stripe/space-commander/bin
export PATH=${PATH}:~/stripe/go/bin
export PATH=${PATH}:~/bin
export PATH=${PATH}:~/.bin
export PATH=${PATH}:~/.bin/terraform
export PATH=${PATH}:~/npm/bin
export PATH=${PATH}:~/.cargo/bin
export PATH=${PATH}:~/node-bin/node_modules/.bin
export PATH=${HOMEBREW_PREFIX}/opt/python/libexec/bin:${PATH}
export PATH=${HOMEBREW_PREFIX}/opt/curl/bin:${PATH}
export PATH=${PATH}:/usr/local/bin
export PATH=${PATH}:/bin
export PATH=${PATH}:/usr/sbin
export PATH=${PATH}:/sbin
export PATH=${PATH}:/usr/bin
export PATH=${PATH}:/usr/X11/bin
export PATH=${PATH}:/usr/local/share/npm/bin
export PATH=${PATH}:~/stripe/.cargo/bin
export PATH=${PATH}:~/stripe/.cargo/env
export EDITOR='nvim -U none'
# open in editor
autoload -z edit-command-line
zle -N edit-command-line
bindkey -M vicmd v edit-command-line
# (ins mode)
bindkey -M viins '\e^?' backward-kill-word
# cursor shape
function zle-keymap-select {
if [[ ${KEYMAP} == vicmd ]] || [[ $1 = 'block' ]]; then
>$TTY echo -ne '\e[2 q'
elif [[ ${KEYMAP} == main ]] || [[ ${KEYMAP} == viins ]] || [[ ${KEYMAP} = '' ]] || [[ $1 = 'beam' ]]; then
if [[ ${ZLE_STATE} =~ "insert" ]]; then
>$TTY echo -ne '\e[6 q'
else
>$TTY echo -ne '\e[4 q'
fi
fi
}
# Use beam shape cursor for each new prompt.
preexec() {
>$TTY echo -ne '\e[6 q'
}
_fix_cursor() {
>$TTY echo -ne '\e[6 q'
}
precmd_functions+=(_fix_cursor)
zle -N zle-keymap-select
# Enter normal mode immediately
KEYTIMEOUT=1
ZSH_AUTOSUGGEST_USE_ASYNC=1
ZSH_AUTOSUGGEST_MANUAL_REBIND=1
ZSH_AUTOSUGGEST_HISTORY_IGNORE="man *"
# dir aliases
[ -d ~/.dotfiles ] && hash -d dots=~/.dotfiles
[ -d ~/stripe/pay-server/manage/frontend ] && hash -d dashboard=~/stripe/pay-server/manage/frontend
[ -d ~/stripe/pay-server/manage ] && hash -d manage=~/stripe/pay-server/manage
[ -d ~/stripe/pay-server ] && hash -d pay=~/stripe/pay-server
[ -d /pay/src/pay-server/manage/frontend ] && hash -d dashboard=/pay/src/pay-server/manage/frontend
[ -d /pay/src/pay-server/manage ] && hash -d manage=/pay/src/pay-server/manage
[ -d /pay/src/pay-server ] && hash -d pay=/pay/src/pay-server
hash -d config=~/.config
# aliases
alias vim='nvim'
alias vi='nvim'
alias vimdiff='nvim -d'
if [ -x "$(command -v eza)" ]; then
alias ll='eza -la'
else
alias ll='ls -la'
fi
alias gfm='git fetch origin master-passing-tests:master-passing-tests'
alias grm='git rebase master-passing-tests'
# FZF
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
[ -f /usr/share/doc/fzf/examples/key-bindings.zsh ] && source /usr/share/doc/fzf/examples/key-bindings.zsh
[ -f /usr/share/doc/fzf/examples/completion.zsh ] && source /usr/share/doc/fzf/examples/completion.zsh
export FZF_DEFAULT_OPTS="--bind=ctrl-d:page-down,ctrl-u:page-up \
--border=rounded \
--height=100% \
--color=dark,bg+:0,fg+:4,border:white,pointer:red \
--pointer='▷ '\
--prompt='❯ ' \
--no-reverse"
# fbr - checkout git branch (including remote branches)
fbr() {
local branches branch
branches=$(git branch --format="%(refname:short)" --sort=-committerdate) &&
branch=$(echo "$branches" | fzf) &&
git checkout $branch
}
osc52copy() {
local encoded
encoded=$(echo $1 | base64)
printf '\033]52;c;%s\a' $encoded
}
ghpr() {
local origin owner branch url
origin=$(git remote -v | grep origin | grep push | cut -d ':' -f 2 | cut -d '.' -f 1 | cut -d ' ' -f 1)
# echo $origin
owner=$(echo "$origin" | cut -d '/' -f 1)
# echo $owner
branch=$(git rev-parse --abbrev-ref HEAD)
# echo $branch
if [[ "$owner" == "stripe-internal" ]]; then
url="https://git.corp.stripe.com/$origin/compare/$branch?expand=1"
else
url="https://github.com/$origin/pull/new/$branch"
fi
osc52copy $url
}
alias zz='z -c' # restrict matches to subdirs of $PWD
alias zf='z -I' # use fzf to select in multiple matches
# zsh-autosuggestions
bindkey '^n' autosuggest-accept
export RIPGREP_CONFIG_PATH=~/.config/rg/.ripgreprc
## stripe
fetch_remotes() {
local list=$(\
pay remote list --raw \
| jq -r '
sort_by(.last_accessed)
| reverse
| .[] as {$name, $status, $last_accessed_human_readable, $emoji, $go_dev_url}
| ["[" + $emoji + "]" + $name, "[\($status)]", $go_dev_url, $last_accessed_human_readable]
| @tsv
'\
| column -t \
)
print $list
}
remotes() {
remote=$(fetch_remotes | fzf)
if [ ! -z $remote ]; then
remote=$(echo "$remote" | cut -w -f 1 | cut -d ] -f 2)
tmux nest && ssh -t $(pay remote ssh $remote -- hostname) "tmux a || tmux" && \
tmux unnest
fi
}
godev() {
remote=$(fetch_remotes | fzf)
if [ ! -z $remote ]; then
echo "$remote" | cut -w -f 3
fi
}
remote() {
local branch remote
remote="$1"
branch="$(whoami)/$remote"
pay remote new "$1" -r "pay-server:$branch" --skip-confirm --no-open-code --notify-on-ready -s manage -s manage_vite && \
tmux nest && ssh -t $(pay remote ssh $remote -- hostname) "tmux a || tmux" && \
tmux unnest
}
remote_url() {
osc52copy $(pay remote url $remote_name "$@")
}
if [ -d ~/stripe ]; then
source ~/stripe/space-commander/bin/sc-aliases
. /Users/moon/.rbenvrc
. ~/.stripe-repos.sh
export GOPATH="${HOME}/stripe/go"
export CARGO_HOME="${HOME}/stripe/.cargo"
export RUSTUP_HOME=~/stripe/.rustup
fi
eval "$(nodenv init -)"
# To customize prompt, run `p10k configure` or edit ~/.config/zsh/.p10k.zsh.
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh
alias luamake=/Users/joe/home/lua-language-server/3rd/luamake/luamake
# generated with https://github.com/sharkdp/vivid
# https://github.com/sodiumjoe/dotfiles/blob/5ec47fc22911ace3e7090d13fe0ef0629e3719a3/vivid/themes/sodium.yml
export LS_COLORS="*~=0;38;2;85;104;115:bd=0;38;2;127;193;202;48;2;30;39;44:ca=0:cd=0;38;2;209;142;194;48;2;30;39;44:di=1;38;2;131;175;229:do=0;38;2;30;39;44;48;2;209;142;194:ex=1;38;2;209;142;194:fi=0:ln=0;38;2;209;142;194:mh=0:mi=0;38;2;30;39;44;48;2;223;140;140:no=0:or=0;38;2;30;39;44;48;2;223;140;140:ow=0:pi=0;38;2;30;39;44;48;2;127;193;202:rs=0:sg=0:so=0;38;2;30;39;44;48;2;209;142;194:st=0:su=0:tw=0:*.a=1;38;2;209;142;194:*.c=0;38;2;131;175;229:*.d=0;38;2;131;175;229:*.h=0;38;2;131;175;229:*.m=0;38;2;131;175;229:*.o=0;38;2;85;104;115:*.p=0;38;2;131;175;229:*.r=0;38;2;131;175;229:*.t=0;38;2;131;175;229:*.z=4;38;2;209;142;194:*.7z=4;38;2;209;142;194:*.as=0;38;2;131;175;229:*.bc=0;38;2;85;104;115:*.bz=4;38;2;209;142;194:*.cc=0;38;2;131;175;229:*.cp=0;38;2;131;175;229:*.cr=0;38;2;131;175;229:*.cs=0;38;2;131;175;229:*.di=0;38;2;131;175;229:*.el=0;38;2;131;175;229:*.ex=0;38;2;131;175;229:*.fs=0;38;2;131;175;229:*.go=0;38;2;131;175;229:*.gv=0;38;2;131;175;229:*.gz=4;38;2;209;142;194:*.hh=0;38;2;131;175;229:*.hi=0;38;2;85;104;115:*.hs=0;38;2;131;175;229:*.jl=0;38;2;131;175;229:*.js=0;38;2;131;175;229:*.ko=1;38;2;209;142;194:*.kt=0;38;2;131;175;229:*.la=0;38;2;85;104;115:*.ll=0;38;2;131;175;229:*.lo=0;38;2;85;104;115:*.md=0;38;2;218;218;147:*.ml=0;38;2;131;175;229:*.mn=0;38;2;131;175;229:*.nb=0;38;2;131;175;229:*.pl=0;38;2;131;175;229:*.pm=0;38;2;131;175;229:*.pp=0;38;2;131;175;229:*.ps=0;38;2;242;195;143:*.py=0;38;2;131;175;229:*.rb=0;38;2;131;175;229:*.rm=0;38;2;242;195;143:*.rs=0;38;2;131;175;229:*.sh=0;38;2;131;175;229:*.so=1;38;2;209;142;194:*.td=0;38;2;131;175;229:*.ts=0;38;2;131;175;229:*.ui=0;38;2;168;206;147:*.vb=0;38;2;131;175;229:*.wv=0;38;2;242;195;143:*.xz=4;38;2;209;142;194:*.aif=0;38;2;242;195;143:*.ape=0;38;2;242;195;143:*.apk=4;38;2;209;142;194:*.arj=4;38;2;209;142;194:*.asa=0;38;2;131;175;229:*.aux=0;38;2;85;104;115:*.avi=0;38;2;242;195;143:*.awk=0;38;2;131;175;229:*.bag=4;38;2;209;142;194:*.bak=0;38;2;85;104;115:*.bat=1;38;2;209;142;194:*.bbl=0;38;2;85;104;115:*.bcf=0;38;2;85;104;115:*.bib=0;38;2;168;206;147:*.bin=4;38;2;209;142;194:*.blg=0;38;2;85;104;115:*.bmp=0;38;2;242;195;143:*.bsh=0;38;2;131;175;229:*.bst=0;38;2;168;206;147:*.bz2=4;38;2;209;142;194:*.c++=0;38;2;131;175;229:*.cfg=0;38;2;168;206;147:*.cgi=0;38;2;131;175;229:*.clj=0;38;2;131;175;229:*.com=1;38;2;209;142;194:*.cpp=0;38;2;131;175;229:*.css=0;38;2;131;175;229:*.csv=0;38;2;218;218;147:*.csx=0;38;2;131;175;229:*.cxx=0;38;2;131;175;229:*.deb=4;38;2;209;142;194:*.def=0;38;2;131;175;229:*.dll=1;38;2;209;142;194:*.dmg=4;38;2;209;142;194:*.doc=0;38;2;242;195;143:*.dot=0;38;2;131;175;229:*.dox=0;38;2;168;206;147:*.dpr=0;38;2;131;175;229:*.elc=0;38;2;131;175;229:*.elm=0;38;2;131;175;229:*.epp=0;38;2;131;175;229:*.eps=0;38;2;242;195;143:*.erl=0;38;2;131;175;229:*.exe=1;38;2;209;142;194:*.exs=0;38;2;131;175;229:*.fls=0;38;2;85;104;115:*.flv=0;38;2;242;195;143:*.fnt=0;38;2;242;195;143:*.fon=0;38;2;242;195;143:*.fsi=0;38;2;131;175;229:*.fsx=0;38;2;131;175;229:*.gif=0;38;2;242;195;143:*.git=0;38;2;85;104;115:*.gvy=0;38;2;131;175;229:*.h++=0;38;2;131;175;229:*.hpp=0;38;2;131;175;229:*.htc=0;38;2;131;175;229:*.htm=0;38;2;218;218;147:*.hxx=0;38;2;131;175;229:*.ico=0;38;2;242;195;143:*.ics=0;38;2;242;195;143:*.idx=0;38;2;85;104;115:*.ilg=0;38;2;85;104;115:*.img=4;38;2;209;142;194:*.inc=0;38;2;131;175;229:*.ind=0;38;2;85;104;115:*.ini=0;38;2;168;206;147:*.inl=0;38;2;131;175;229:*.ipp=0;38;2;131;175;229:*.iso=4;38;2;209;142;194:*.jar=4;38;2;209;142;194:*.jpg=0;38;2;242;195;143:*.kex=0;38;2;242;195;143:*.kts=0;38;2;131;175;229:*.log=0;38;2;85;104;115:*.ltx=0;38;2;131;175;229:*.lua=0;38;2;131;175;229:*.m3u=0;38;2;242;195;143:*.m4a=0;38;2;242;195;143:*.m4v=0;38;2;242;195;143:*.mid=0;38;2;242;195;143:*.mir=0;38;2;131;175;229:*.mkv=0;38;2;242;195;143:*.mli=0;38;2;131;175;229:*.mov=0;38;2;242;195;143:*.mp3=0;38;2;242;195;143:*.mp4=0;38;2;242;195;143:*.mpg=0;38;2;242;195;143:*.nix=0;38;2;168;206;147:*.odp=0;38;2;242;195;143:*.ods=0;38;2;242;195;143:*.odt=0;38;2;242;195;143:*.ogg=0;38;2;242;195;143:*.org=0;38;2;218;218;147:*.otf=0;38;2;242;195;143:*.out=0;38;2;85;104;115:*.pas=0;38;2;131;175;229:*.pbm=0;38;2;242;195;143:*.pdf=0;38;2;242;195;143:*.pgm=0;38;2;242;195;143:*.php=0;38;2;131;175;229:*.pid=0;38;2;85;104;115:*.pkg=4;38;2;209;142;194:*.png=0;38;2;242;195;143:*.pod=0;38;2;131;175;229:*.ppm=0;38;2;242;195;143:*.pps=0;38;2;242;195;143:*.ppt=0;38;2;242;195;143:*.pro=0;38;2;168;206;147:*.ps1=0;38;2;131;175;229:*.psd=0;38;2;242;195;143:*.pyc=0;38;2;85;104;115:*.pyd=0;38;2;85;104;115:*.pyo=0;38;2;85;104;115:*.rar=4;38;2;209;142;194:*.rpm=4;38;2;209;142;194:*.rst=0;38;2;218;218;147:*.rtf=0;38;2;242;195;143:*.sbt=0;38;2;131;175;229:*.sql=0;38;2;131;175;229:*.sty=0;38;2;85;104;115:*.svg=0;38;2;242;195;143:*.swf=0;38;2;242;195;143:*.swp=0;38;2;85;104;115:*.sxi=0;38;2;242;195;143:*.sxw=0;38;2;242;195;143:*.tar=4;38;2;209;142;194:*.tbz=4;38;2;209;142;194:*.tcl=0;38;2;131;175;229:*.tex=0;38;2;131;175;229:*.tgz=4;38;2;209;142;194:*.tif=0;38;2;242;195;143:*.tml=0;38;2;168;206;147:*.tmp=0;38;2;85;104;115:*.toc=0;38;2;85;104;115:*.tsx=0;38;2;131;175;229:*.ttf=0;38;2;242;195;143:*.txt=0;38;2;218;218;147:*.vcd=4;38;2;209;142;194:*.vim=0;38;2;131;175;229:*.vob=0;38;2;242;195;143:*.wav=0;38;2;242;195;143:*.wma=0;38;2;242;195;143:*.wmv=0;38;2;242;195;143:*.xcf=0;38;2;242;195;143:*.xlr=0;38;2;242;195;143:*.xls=0;38;2;242;195;143:*.xml=0;38;2;218;218;147:*.xmp=0;38;2;168;206;147:*.yml=0;38;2;168;206;147:*.zip=4;38;2;209;142;194:*.zsh=0;38;2;131;175;229:*.zst=4;38;2;209;142;194:*TODO=1:*hgrc=0;38;2;168;206;147:*.bash=0;38;2;131;175;229:*.conf=0;38;2;168;206;147:*.dart=0;38;2;131;175;229:*.diff=0;38;2;131;175;229:*.docx=0;38;2;242;195;143:*.epub=0;38;2;242;195;143:*.fish=0;38;2;131;175;229:*.flac=0;38;2;242;195;143:*.h264=0;38;2;242;195;143:*.hgrc=0;38;2;168;206;147:*.html=0;38;2;218;218;147:*.java=0;38;2;131;175;229:*.jpeg=0;38;2;242;195;143:*.json=0;38;2;168;206;147:*.less=0;38;2;131;175;229:*.lisp=0;38;2;131;175;229:*.lock=0;38;2;85;104;115:*.make=0;38;2;168;206;147:*.mpeg=0;38;2;242;195;143:*.opus=0;38;2;242;195;143:*.orig=0;38;2;85;104;115:*.pptx=0;38;2;242;195;143:*.psd1=0;38;2;131;175;229:*.psm1=0;38;2;131;175;229:*.purs=0;38;2;131;175;229:*.rlib=0;38;2;85;104;115:*.sass=0;38;2;131;175;229:*.scss=0;38;2;131;175;229:*.tbz2=4;38;2;209;142;194:*.tiff=0;38;2;242;195;143:*.toml=0;38;2;168;206;147:*.webm=0;38;2;242;195;143:*.webp=0;38;2;242;195;143:*.woff=0;38;2;242;195;143:*.xbps=4;38;2;209;142;194:*.xlsx=0;38;2;242;195;143:*.yaml=0;38;2;168;206;147:*.cabal=0;38;2;131;175;229:*.cache=0;38;2;85;104;115:*.class=0;38;2;85;104;115:*.cmake=0;38;2;168;206;147:*.dyn_o=0;38;2;85;104;115:*.ipynb=0;38;2;131;175;229:*.mdown=0;38;2;218;218;147:*.patch=0;38;2;131;175;229:*.scala=0;38;2;131;175;229:*.shtml=0;38;2;218;218;147:*.swift=0;38;2;131;175;229:*.toast=4;38;2;209;142;194:*.xhtml=0;38;2;218;218;147:*README=0;38;2;30;39;44;48;2;242;195;143:*passwd=0;38;2;168;206;147:*shadow=0;38;2;168;206;147:*.config=0;38;2;168;206;147:*.dyn_hi=0;38;2;85;104;115:*.flake8=0;38;2;168;206;147:*.gradle=0;38;2;131;175;229:*.groovy=0;38;2;131;175;229:*.ignore=0;38;2;168;206;147:*.matlab=0;38;2;131;175;229:*COPYING=0;38;2;106;125;137:*INSTALL=0;38;2;30;39;44;48;2;242;195;143:*LICENSE=0;38;2;106;125;137:*TODO.md=1:*.desktop=0;38;2;168;206;147:*.gemspec=0;38;2;168;206;147:*Doxyfile=0;38;2;168;206;147:*Makefile=0;38;2;168;206;147:*TODO.txt=1:*setup.py=0;38;2;168;206;147:*.DS_Store=0;38;2;85;104;115:*.cmake.in=0;38;2;168;206;147:*.fdignore=0;38;2;168;206;147:*.kdevelop=0;38;2;168;206;147:*.markdown=0;38;2;218;218;147:*.rgignore=0;38;2;168;206;147:*COPYRIGHT=0;38;2;106;125;137:*README.md=0;38;2;30;39;44;48;2;242;195;143:*configure=0;38;2;168;206;147:*.gitconfig=0;38;2;168;206;147:*.gitignore=0;38;2;168;206;147:*.localized=0;38;2;85;104;115:*.scons_opt=0;38;2;85;104;115:*CODEOWNERS=0;38;2;168;206;147:*Dockerfile=0;38;2;168;206;147:*INSTALL.md=0;38;2;30;39;44;48;2;242;195;143:*README.txt=0;38;2;30;39;44;48;2;242;195;143:*SConscript=0;38;2;168;206;147:*SConstruct=0;38;2;168;206;147:*.gitmodules=0;38;2;168;206;147:*.synctex.gz=0;38;2;85;104;115:*.travis.yml=0;38;2;218;218;147:*INSTALL.txt=0;38;2;30;39;44;48;2;242;195;143:*LICENSE-MIT=0;38;2;106;125;137:*MANIFEST.in=0;38;2;168;206;147:*Makefile.am=0;38;2;168;206;147:*Makefile.in=0;38;2;85;104;115:*.applescript=0;38;2;131;175;229:*.fdb_latexmk=0;38;2;85;104;115:*CONTRIBUTORS=0;38;2;30;39;44;48;2;242;195;143:*appveyor.yml=0;38;2;218;218;147:*configure.ac=0;38;2;168;206;147:*.clang-format=0;38;2;168;206;147:*.gitattributes=0;38;2;168;206;147:*.gitlab-ci.yml=0;38;2;218;218;147:*CMakeCache.txt=0;38;2;85;104;115:*CMakeLists.txt=0;38;2;168;206;147:*LICENSE-APACHE=0;38;2;106;125;137:*CONTRIBUTORS.md=0;38;2;30;39;44;48;2;242;195;143:*.sconsign.dblite=0;38;2;85;104;115:*CONTRIBUTORS.txt=0;38;2;30;39;44;48;2;242;195;143:*requirements.txt=0;38;2;168;206;147:*package-lock.json=0;38;2;85;104;115:*.CFUserTextEncoding=0;38;2;85;104;115"
autoload -Uz bashcompinit; bashcompinit
# copied from .bash_profile
### BEGIN STRIPE
# All Stripe related shell configuration
# is at ~/.stripe/shellinit/bash_profile and is
# persistently managed by Chef. You shouldn't
# remove this unless you don't want to load
# Stripe specific shell configurations.
#
# Feel free to add your customizations in this
# file (~/.bash_profile) after the Stripe config
# is sourced.
if [[ -f ~/.stripe/shellinit/bash_profile ]]; then
source ~/.stripe/shellinit/bash_profile
fi
### END STRIPE
# START - Managed by chef cookbook stripe_cpe_bin
alias tc='/usr/local/stripe/bin/test_cookbook'
alias cz='/usr/local/stripe/bin/chef-zero'
alias cookit='tc && cz'
# STOP - Managed by chef cookbook stripe_cpe_bin