blob: 5e08203dd0917796a9618b584927780355cc038f (
plain) (
blame)
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
|
autoload -U add-zsh-hook
autoload -Uz vcs_info
#use extended color pallete if available
if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then
turquoise="%F{81}"
orange="%F{166}"
purple="%F{135}"
hotpink="%F{161}"
limegreen="%F{118}"
lorange="%F{222}"
batyellow="%F{226}"
muckgreen="%F{29}"
batgreen="%F{76}"
batred="%F{88}"
tsocks="%F{132}"
purblue="%F{69}"
swampgreen="%F{64}"
purple4="%F{54}"
deeppink="%F{109}"
someblue="%F{27}"
bluesomething="%F{25}"
limblue="%F{154}"
skyblue="%F{30}"
teal="%F{31}"
new="%F{45}"
new2="%F{50}"
sneakyc="%F{63}"
gnew="%F{65}"
gnew2="%F{67}"
gover="%F{111}"
rust="%F{36}"
typescript="%F{37}"
viinsert="%F{33}"
veryorange="%F{202}"
yablue="%F{32}"
yagreen="%F{34}"
babyblue="%F{39}"
somegreen="%F{22}"
randomblue="%F{26}"
yaorange="%F{67}"
greeniegreen="%F{35}"
else
turquoise="$fg[cyan]"
orange="$fg[yellow]"
purple="$fg[magenta]"
hotpink="$fg[red]"
limegreen="$fg[green]"
batyellow="%fg[yellow]"
batgreen="%fg[green]"
batred="%fg[red]"
fi
virtualenv_info() {
# if [[ -a ./bin/activate ]]; then
# source ./bin/activate > /dev/null
# fi
# [ $VIRTUAL_ENV ] && echo ' ('`basename $VIRTUAL_ENV`')'
if [[ $VIRTUAL_ENV != "" ]];then
local result=$(basename $VIRTUAL_ENV)
echo " ($result)"
else
;
fi
}
tsocks_on() {
if echo $LD_PRELOAD | grep libtsocks > /dev/null 2>&1; then
echo "%K{22}%F{0}%K{0}%F{22}"
else
echo ""
;
fi
}
sudo_query() {
if sudo -nv > /dev/null 2>&1; then
echo "%K{33}%F{0}%K{0}%F{33}"
else
echo ""
fi
}
time_function() {
date +"%b-%d-%R:%S"
}
node_version() {
local version=$(fnm current)
echo " <$version>"
}
ruby_version() {
local version=$(rbenv version | gawk '{print $1}')
echo " <$version>"
}
dir_writeable() {
if [ -w $(pwd) ]; then
echo ""
else
echo " %K{196}%F{0}%K{0}%F{196}"
fi
}
sneaky() {
if [[ $! -ne 0 ]]; then
echo " $!"
fi
}
bg_job_count() {
# job_count=$("jobs" | wc -l)
local job_count=$(echo $jobstates | awk 'END{print NF}')
if [[ $job_count > 0 ]];then
echo " $job_count"
else
;
fi
}
_async_gittrivia() {
cd -q $1
vcs_info
print ${vcs_info_msg_0_}
}
goversion() {
local version=$("go" version | gawk '{print $3}')
echo " <${version:2:$((${#version}))}>"
}
rustversion() {
local version=$(rustc --version | gawk '{print $2}')
echo " <$version>"
}
typescriptversion() {
local version=$(tvm tsc --version | gawk '{print $2}')
echo " <$version>"
}
pwd_shortened() {
local cwd=$(pwd)
IFS='/' read -rA tmux_path_array <<< "$cwd"
typeset -i counter
for i in "${tmux_path_array[@]}"
do
let counter++
if [[ $counter == $(($#tmux_path_array)) ]]; then
shortened_path+=$i
else
shortened_path+=${i:0:1}/
fi
done
echo $shortened_path
}
zstyle ':zsh-kubectl-prompt:' separator ':'
getkubernetesinfo() {
local SUB_PROMPT="%{$somegreen%}<<$ZSH_KUBECTL_USER:$ZSH_KUBECTL_PROMPT>>"
if [[ "$ZSH_KUBECTL_USER" =~ "admin@" ]];then
SUB_PROMPT="%{$someblue%}<$ZSH_KUBECTL_PROMPT>"
fi
echo $SUB_PROMPT
}
getterminal() {
if [ ! $TTY = "" ]; then echo $TTY;else echo $STY;fi
}
rbq_info_msg=""
kube_info_msg=""
meson_env() {
if [[ -n "${MESON_PROJECT_NAME-}" ]];then
echo " [${MESON_PROJECT_NAME}]"
else
:
fi
}
pyenv_version() {
local version=$(pyenv version | awk '{print $1}')
echo " <${version}>"
# echo " <$CONDA_DEFAULT_ENV>"
}
NEWLINE=$'\n'
PS1='$(dir_writeable)\
$(tsocks_on)\
$(sudo_query) \
%{$yagreen%}$(pwd_shortened) \
%{$muckgreen%}$(time_function)\
%{$viinsert%}${vcs_info_msg_0_}\
%{$deeppink%}$(virtualenv_info)\
%{$greeniegreen%}$(meson_env)\
%{$yablue%}$(pyenv_version)\
%{$teal%}$(node_version)\
%{$gover%}$(goversion)\
%{$rust%}$(rustversion)\
%{$babyblue%}$(ruby_version)\
%{$sneakyc%}$(sneaky)\
%{$new%}$rbq_info_msg \
$(getkubernetesinfo)'
PS2=""
PS3="$NEWLINE%{$randomblue%}--➜%K{0}%F{15}"
PS4=""
PROMPT="$PS1$PS2$PS3"
inranger() {
local ranger_prompt=$(if [ -n "$RANGER_LEVEL" ];then echo " <ranger>";else echo "";fi)
echo $ranger_prompt
}
timer_preexec() {
typeset -g -F SECONDS
timer=${timer:-$SECONDS}
}
add-zsh-hook preexec timer_preexec
timer_precmd() {
if [ $timer ]; then
timer_show=$(($SECONDS - $timer))
timer_show=$((timer_show*1000))
typeset -g -i timer_show_int
timer_show_int=$timer_show
timer_final="$timer_show_int"mS
unset timer
fi
}
add-zsh-hook precmd timer_precmd
rbq() {
make -C $1 -q > /dev/null 2>&1
if [[ $? == 1 ]]; then
echo " ::rebuild::"
else
;
fi
}
# zsh-async https://github.com/mafredri/zsh-async
source /home/devi/zsh-async.git/v1.8.5/async.zsh
# async jobs
# https://github.com/vincentbernat/zshrc/blob/d66fd6b6ea5b3c899efb7f36141e3c8eb7ce348b/rc/vcs.zsh
_async_rbq_start() {
async_start_worker rbq_info
async_register_callback rbq_info _async_rbq_info_done
}
_async_rbq_info_done() {
local job=$1
local return_code=$2
local stdout=$3
local more=$6
if [[ $job == '[async]' ]]; then
if [[ $return_code -eq 2 ]]; then
_async_rbq_start
return
fi
fi
rbq_info_msg=$stdout
[[ $more == 1 ]] || zle reset-prompt
}
_async_gittrivia_start() {
async_start_worker gittrivia_info
async_register_callback gittrivia_info _async_gittrivia_done
}
_async_gittrivia_done() {
local job=$1
local return_code=$2
local stdout=$3
local more=$6
if [[ $job == '[async]' ]]; then
if [[ $return_code -eq 2 ]]; then
_async_gittrivia_start
return
fi
fi
vcs_info_msg_0_=$stdout
[[ $more == 1 ]] || zle reset-prompt
}
async_init
_async_rbq_start
_async_gittrivia_start
add-zsh-hook precmd (){
async_job rbq_info rbq $PWD
async_job gittrivia_info _async_gittrivia $PWD
}
export PERIOD=3
add-zsh-hook periodic (){
}
add-zsh-hook chpwd (){
rbq_info_msg=
vcs_info_msg_0_=
}
#https://raw.githubusercontent.com/alfredodeza/zsh-plugins/master/vi/zle_vi_visual.zsh
#this gives us vivis and vivli
source ~/.oh-my-zsh/plugins/zle-vi-visual/zle_vi_visual.zsh
function zle-line-init zle-keymap-select {
RIGHT_PROMPT="%{$teal%}$timer_final \
%{$lorange%}%?↵\
%{$yaorange%} L$SHLVL\
%{$veryorange%}$(bg_job_count)\
%{$bluesomething%}$(inranger)"
VIM_PROMPT_INSERT="%{$fg_bold[cyan]%}% [% INS]% %{$reset_color%}"
VIM_PROMPT_MAIN="%{$fg_bold[blue]%}% [% INSERT]% %{$reset_color%}"
VIM_PROMPT_REPLACE="%{$fg_bold[black]%}% %{$bg_bold[red]%}% [% REPLACE]% %{$reset_color%}"
VIM_PROMPT_VISUAL_LINE="%{$fg_bold[red]%}% [% VISUAL-LINE]% %{$reset_color%}"
VIM_PROMPT_VISUAL_CHAR="%{$fg_bold[red]%}% [% VISUAL]% %{$reset_color%}"
VIM_PROMPT_CMD="%{$fg_bold[green]%}% [% NORMAL]% %{$reset_color%}"
if [[ $KEYMAP == vivis ]]; then
RPS1="$VIM_PROMPT_VISUAL_CHAR $RIGHT_PROMPT"
elif [[ $KEYMAP == vivli ]]; then
RPS1="$VIM_PROMPT_VISUAL_LINE $RIGHT_PROMPT"
elif [[ $KEYMAP == vicmd ]];then
RPS1="$VIM_PROMPT_CMD $RIGHT_PROMPT"
elif [[ $KEYMAP == viins ]]; then
RPS1="$VIM_PROMPT_INSERT $RIGHT_PROMPT"
elif [[ $KEYMAP == main ]]; then
RPS1="$VIM_PROMPT_MAIN $RIGHT_PROMPT"
VI_MODE_R_ENTERED="no"
fi
zle reset-prompt
}
zle -N zle-line-init
zle -N zle-keymap-select
export KEYTIMEOUT=1
|