-
Notifications
You must be signed in to change notification settings - Fork 54
/
jovial.plugin.zsh
301 lines (245 loc) · 7.87 KB
/
jovial.plugin.zsh
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
#
# Locale
# utf-8 to display emoji
#
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export JOVIAL_PLUGIN_VERSION='1.2.0'
#
# ########## Aliases ##########
#
alias pxy='proxychains4'
alias py='python'
alias py3='python3'
alias ipy='ipython'
alias jpy='jupyter notebook'
alias act='source activate'
alias deact='source deactivate'
# node for es module - enable import esm in node REPL
# use `\node` for pure node
# (need nodejs and `npm i -g esm` )
# alias node='NODE_PATH=`npm root -g` \node -r esm'
alias tsnode='ts-node -T -O "{ \"module\": \"commonjs\" }"'
# app shortcut macOS
# https://support.typora.io/Use-Typora-From-Shell-or-cmd/
alias typora='open -a typora'
# lazygit - https://github.com/jesseduffield/lazygit
alias lg='lazygit'
# git clone but we always commonly need only one depth
alias gcl1='gcl --depth=1'
# git log time iso
alias glti='git log --pretty=fuller --date=iso --show-signature'
alias glt1='glti -n 1'
# git log message raw
alias glraw='git log --format=%B -n 1'
# git log commit time raw
alias gltraw='glt1 | grep -oE "^AuthorDate:(.*)$" | cut -c 13-'
# https://stackoverflow.com/questions/89332/how-to-recover-a-dropped-stash-in-git/
alias git-find-lost="git log --oneline \$(git fsck --no-reflogs | awk '/dangling commit/ {print \$3}')"
# similar to 'ps aux', list all processes but log custom metrics
alias psx="ps -A -o user,pid,ppid,pcpu,pmem,vsz,rss,time,etime,command"
alias psxg="psx | grep"
#
# ########## Utils ##########
#
function gfco {
: 'git fetch and checkout to target branch'
local branch="$1"
git fetch ${GIT_REMOTE:-origin} --no-tags --update-head-ok +${branch}:${branch} && gco ${branch} --recurse-submodules
}
function gfbi {
: 'git fetch and rebase to target branch'
local branch="$1"
git fetch ${GIT_REMOTE:-origin} --no-tags +${branch}:${branch} && grbi --committer-date-is-author-date ${branch}
}
function gDcb {
: '
git delete and checkout -b to target branch
ensure that overwrite current ref to target branch name
'
local branch="$1"
gbD ${branch} 2>/dev/null
gco -b ${branch}
}
function gcmt {
: 'git commit with modified time'
if [[ -z $2 ]]; then
echo "gcmt - git commit with specified datetime"
echo "Usage: gcmt <commit-time> <commit-message>"
return
fi
# https://git-scm.com/book/en/v2/Git-Internals-Environment-Variables
GIT_AUTHOR_DATE="$1" GIT_COMMITTER_DATE="$1" gcmsg "$2"
}
function gmct {
: 'git modify commits time'
if [[ -z $2 ]]; then
echo "gmct - git modify history commit date with specified datetime"
echo "Usage: gmct <commit-id> <commit-time> [commit-time] [commit-time] ..."
return
fi
local commit="$1"
shift
GIT_SEQUENCE_EDITOR='perl -i -pe "s/^pick /edit /"' git rebase -i "${commit}~1"
while [[ -e .git/rebase-merge ]]; do
if [[ -n $1 ]]; then
local commit_time="$1"
GIT_COMMITTER_DATE="${commit_time}" git commit --amend --no-edit --date="${commit_time}"
shift
else
GIT_COMMITTER_DATE=`gltraw` git commit --amend --no-edit
fi
git rebase --continue
done
}
function grclast {
: '
git re-commit last commit
(soft reset to last & commit all changes)
'
local last_log=`glraw`
local last_time=`gltraw`
if [[ -n $1 ]]; then
last_time="$1"
fi
git reset HEAD~1 \
&& gaa \
&& gcmt "${last_time}" "${last_log}"
}
function venv {
: '
create or enable python venv
$ venv # -> python3 venv
$ venv --py2 # -> python2 virtualenv
'
if [[ -n ${VIRTUAL_ENV} ]]; then
deactivate
return
fi
if [[ -d venv ]]; then
. venv/bin/activate
return
fi
# if not exist venv dir, create a new one before enable it
if [[ $1 == --py2 ]]; then
python2 -m virtualenv venv
else
python3 -m venv venv
fi
[[ $? == 0 ]] && venv
}
function zsh-theme-benchmark() {
time (
for i in {1..10}; do
print -P "${PROMPT}"
done
)
}
#
# ########## App Config ##########
#
# bgnotify setting
bgnotify_threshold=4
function bgnotify_formatted {
# zsh plugin bgnotify
# args: (exit_status, command, elapsed_seconds)
elapsed="$(( $3 % 60 ))s"
(( $3 >= 60 )) && elapsed="$((( $3 % 3600) / 60 ))m $elapsed"
(( $3 >= 3600 )) && elapsed="$(( $3 / 3600 ))h $elapsed"
[[ $1 == 0 ]] && bgnotify "🎉 Success ($elapsed)" "$2" || bgnotify "💥 Failed ($elapsed)" "$2"
}
# https://superuser.com/questions/71588/how-to-syntax-highlight-via-less
LESSPIPE=`((which src-hilite-lesspipe.sh > /dev/null && which src-hilite-lesspipe.sh) || (dpkg -L libsource-highlight-common | grep lesspipe)) 2> /dev/null`
if [[ -n ${LESSPIPE} && -e ${LESSPIPE} ]]; then
export LESSOPEN="| ${LESSPIPE} %s"
# -R: --RAW-CONTROL-CHARS
# -F: --quit-if-one-screen
# -X: --no-init
export LESS=' -R -X -F '
fi
#
# ########## cheat sheet ##########
#
function sheet:shortcuts {
# show bash/zsh xterm shell default shortcuts (Emacs style)
echo '
shortcuts for xterm (Emacs style):
ctrl+A ctrl+E ─┐
┌─────────┬──────────┐ │
│ alt+B │ alt+F │ ├─► Moving
│ ┌──────┼────┐ │ │
▼ ▼ │ ▼ ▼ ─┘
$ cp assets-|files dist/
◄────── ────► ─┐
ctrl+W alt+D │
├─► Erasing
◄───────── ──────────► │
ctrl+U ctrl+K ─┘
ctrl+/ ──► Undo
'
}
function sheet:color {
# https://zsh.sourceforge.io/Doc/Release/Prompt-Expansion.html#Visual-effects
# show 256-color pattern
local block row col fg_color bg_color
local i
local sgr_reset="%{${reset_color}%}"
print -P "$(
echo ""
# the 16 base colors
for i in {0..15}; do
# use shell substitution for pad zero or space to variable
bg_color="${${:-000${i}}:(-3)}"
i="${${:- ${i}}:(-3)}"
if (( bg_color > 0 )); then
fg_color=236
else
fg_color=254
fi
if (( i % 6 == 0 )); then
echo -n "${sgr_reset} "
fi
echo -n "${sgr_reset} %F{${fg_color}}%K{${bg_color}} $i"
done
echo -n "${sgr_reset}\n\n "
# 6 colors blocks (per 6 x 6)
for row in {0..11}; do
if (( row % 6 == 0 )); then
echo -n "${sgr_reset}\n "
fi
if (( (row % 6) > 2 )); then
fg_color=236
else
fg_color=254
fi
for block in {0..2}; do
for col in {0..5}; do
i=$(( 16 + (row / 6) * 36 * 3 + (row % 6) * 6 + block * 36 + col ))
# use shell substitution for pad zero or space to variable
bg_color="${${:-000${i}}:(-3)}"
i="${${:- ${i}}:(-3)}"
echo -n "${sgr_reset} %F{${fg_color}}%K{${bg_color}} $i"
done
echo -n "${sgr_reset} "
done
echo -n "${sgr_reset}\n "
done
echo "${sgr_reset}"
# the two lines gray level colors
for i in {232..255}; do
if (( (i - 16) % 12 == 0 )); then
echo "${sgr_reset}"
fi
if (( (i - 16) % 6 == 0 )); then
echo -n "${sgr_reset} "
fi
if (( i > 243 )); then
fg_color=000
else
fg_color=015
fi
echo -n "${sgr_reset} %F{${fg_color}}%K{${i}} $i"
done
echo "%f%k${sgr_reset}"
)"
}