-
-
Notifications
You must be signed in to change notification settings - Fork 716
/
minimal.zsh-theme
299 lines (250 loc) · 7.29 KB
/
minimal.zsh-theme
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
# Global settings
MNML_OK_COLOR="${MNML_OK_COLOR:-2}"
MNML_ERR_COLOR="${MNML_ERR_COLOR:-1}"
MNML_USER_CHAR="${MNML_USER_CHAR:-λ}"
MNML_INSERT_CHAR="${MNML_INSERT_CHAR:-›}"
MNML_NORMAL_CHAR="${MNML_NORMAL_CHAR:-·}"
MNML_ELLIPSIS_CHAR="${MNML_ELLIPSIS_CHAR:-..}"
MNML_BGJOB_MODE=${MNML_BGJOB_MODE:-4}
[ "${+MNML_PROMPT}" -eq 0 ] && MNML_PROMPT=(mnml_ssh mnml_pyenv mnml_status mnml_keymap)
[ "${+MNML_RPROMPT}" -eq 0 ] && MNML_RPROMPT=('mnml_cwd 2 0' mnml_git)
[ "${+MNML_INFOLN}" -eq 0 ] && MNML_INFOLN=(mnml_err mnml_jobs mnml_uhp mnml_files)
[ "${+MNML_MAGICENTER}" -eq 0 ] && MNML_MAGICENTER=(mnml_me_dirs mnml_me_ls mnml_me_git)
# Components
function mnml_status {
local okc="$MNML_OK_COLOR"
local errc="$MNML_ERR_COLOR"
local uchar="$MNML_USER_CHAR"
local job_ansi="0"
if [ -n "$(jobs | sed -n '$=')" ]; then
job_ansi="$MNML_BGJOB_MODE"
fi
local err_ansi="$MNML_OK_COLOR"
if [ "$MNML_LAST_ERR" != "0" ]; then
err_ansi="$MNML_ERR_COLOR"
fi
printf '%b' "%{\e[$job_ansi;3${err_ansi}m%}%(!.#.$uchar)%{\e[0m%}"
}
function mnml_keymap {
local kmstat="$MNML_INSERT_CHAR"
[ "$KEYMAP" = 'vicmd' ] && kmstat="$MNML_NORMAL_CHAR"
printf '%b' "$kmstat"
}
function mnml_cwd {
local echar="$MNML_ELLIPSIS_CHAR"
local segments="${1:-2}"
local seg_len="${2:-0}"
local _w="%{\e[0m%}"
local _g="%{\e[38;5;244m%}"
if [ "$segments" -le 0 ]; then
segments=0
fi
if [ "$seg_len" -gt 0 ] && [ "$seg_len" -lt 4 ]; then
seg_len=4
fi
local seg_hlen=$((seg_len / 2 - 1))
local cwd="%${segments}~"
cwd="${(%)cwd}"
cwd=("${(@s:/:)cwd}")
local pi=""
for i in {1..${#cwd}}; do
pi="$cwd[$i]"
if [ "$seg_len" -gt 0 ] && [ "${#pi}" -gt "$seg_len" ]; then
cwd[$i]="${pi:0:$seg_hlen}$_w$echar$_g${pi: -$seg_hlen}"
fi
done
printf '%b' "$_g${(j:/:)cwd//\//$_w/$_g}$_w"
}
function mnml_git {
local statc="%{\e[0;3${MNML_OK_COLOR}m%}" # assume clean
local bname="$(git rev-parse --abbrev-ref HEAD 2> /dev/null)"
if [ -n "$bname" ]; then
if [ -n "$(git status --porcelain 2> /dev/null)" ]; then
statc="%{\e[0;3${MNML_ERR_COLOR}m%}"
fi
printf '%b' "$statc$bname%{\e[0m%}"
fi
}
function mnml_hg {
local statc="%{\e[0;3${MNML_OK_COLOR}m%}" # assume clean
local bname="$(hg branch 2> /dev/null)"
if [ -n "$bname" ]; then
if [ -n "$(hg status 2> /dev/null)" ]; then
statc="%{\e[0;3${MNML_ERR_COLOR}m%}"
fi
printf '%b' "$statc$bname%{\e[0m%}"
fi
}
function mnml_hg_no_color {
# Assume branch name is clean
local statc="%{\e[0;3${MNML_OK_COLOR}m%}"
local bname=""
# Defines path as current directory
local current_dir=$PWD
# While current path is not root path
while [[ $current_dir != '/' ]]
do
if [[ -d "${current_dir}/.hg" ]]
then
if [[ -f "$current_dir/.hg/branch" ]]
then
bname=$(<"$current_dir/.hg/branch")
else
bname="default"
fi
printf '%b' "$statc$bname%{\e[0m%}"
return;
fi
# Defines path as parent directory and keeps looking for :)
current_dir="${current_dir:h}"
done
}
function mnml_uhp {
local _w="%{\e[0m%}"
local _g="%{\e[38;5;244m%}"
local cwd="%~"
cwd="${(%)cwd}"
printf '%b' "$_g%n$_w@$_g%m$_w:$_g${cwd//\//$_w/$_g}$_w"
}
function mnml_ssh {
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
printf '%b' "$(hostname -s)"
fi
}
function mnml_pyenv {
if [ -n "$VIRTUAL_ENV" ]; then
_venv="$(basename $VIRTUAL_ENV)"
printf '%b' "${_venv%%.*}"
fi
}
function mnml_err {
local _w="%{\e[0m%}"
local _err="%{\e[3${MNML_ERR_COLOR}m%}"
if [ "${MNML_LAST_ERR:-0}" != "0" ]; then
printf '%b' "$_err$MNML_LAST_ERR$_w"
fi
}
function mnml_jobs {
local _w="%{\e[0m%}"
local _g="%{\e[38;5;244m%}"
local job_n="$(jobs | sed -n '$=')"
if [ "$job_n" -gt 0 ]; then
printf '%b' "$_g$job_n$_w&"
fi
}
function mnml_files {
local _ls="$(env which ls)"
local _w="%{\e[0m%}"
local _g="%{\e[38;5;244m%}"
local a_files="$($_ls -1A | sed -n '$=')"
local v_files="$($_ls -1 | sed -n '$=')"
local h_files="$((a_files - v_files))"
local output="${_w}[$_g${v_files:-0}"
if [ "${h_files:-0}" -gt 0 ]; then
output="$output $_w($_g$h_files$_w)"
fi
output="$output${_w}]"
printf '%b' "$output"
}
# Magic enter functions
function mnml_me_dirs {
local _w="\e[0m"
local _g="\e[38;5;244m"
if [ "$(dirs -p | sed -n '$=')" -gt 1 ]; then
local stack="$(dirs)"
echo "$_g${stack//\//$_w/$_g}$_w"
fi
}
function mnml_me_ls {
if [ "$(uname)" = "Darwin" ] && ! ls --version &> /dev/null; then
COLUMNS=$COLUMNS CLICOLOR_FORCE=1 ls -C -G -F
else
env ls -C -F --color="always" -w $COLUMNS
fi
}
function mnml_me_git {
git -c color.status=always status -sb 2> /dev/null
}
# Wrappers & utils
# join outpus of components
function _mnml_wrap {
local -a arr
arr=()
local cmd_out=""
local cmd
for cmd in ${(P)1}; do
cmd_out="$(eval "$cmd")"
if [ -n "$cmd_out" ]; then
arr+="$cmd_out"
fi
done
printf '%b' "${(j: :)arr}"
}
# expand string as prompt would do
function _mnml_iline {
echo "${(%)1}"
}
# display magic enter
function _mnml_me {
local -a output
output=()
local cmd_out=""
local cmd
for cmd in $MNML_MAGICENTER; do
cmd_out="$(eval "$cmd")"
if [ -n "$cmd_out" ]; then
output+="$cmd_out"
fi
done
printf '%b' "${(j:\n:)output}" | less -XFR
}
# capture exit status and reset prompt
function _mnml_zle-line-init {
MNML_LAST_ERR="$?" # I need to capture this ASAP
zle reset-prompt
}
# redraw prompt on keymap select
function _mnml_zle-keymap-select {
zle reset-prompt
}
# draw infoline if no command is given
function _mnml_buffer-empty {
if [ -z "$BUFFER" ]; then
_mnml_iline "$(_mnml_wrap MNML_INFOLN)"
_mnml_me
zle redisplay
else
zle accept-line
fi
}
# properly bind widgets
# see: https://github.com/zsh-users/zsh-syntax-highlighting/blob/1f1e629290773bd6f9673f364303219d6da11129/zsh-syntax-highlighting.zsh#L292-L356
function _mnml_bind_widgets() {
zmodload zsh/zleparameter
local -a to_bind
to_bind=(zle-line-init zle-keymap-select buffer-empty)
typeset -F SECONDS
local zle_wprefix=s$SECONDS-r$RANDOM
local cur_widget
for cur_widget in $to_bind; do
case "${widgets[$cur_widget]:-""}" in
user:_mnml_*);;
user:*)
zle -N $zle_wprefix-$cur_widget ${widgets[$cur_widget]#*:}
eval "_mnml_ww_${(q)zle_wprefix}-${(q)cur_widget}() { _mnml_${(q)cur_widget}; zle ${(q)zle_wprefix}-${(q)cur_widget} }"
zle -N $cur_widget _mnml_ww_$zle_wprefix-$cur_widget
;;
*)
zle -N $cur_widget _mnml_$cur_widget
;;
esac
done
}
# Setup
autoload -U colors && colors
setopt prompt_subst
PROMPT='$(_mnml_wrap MNML_PROMPT) '
RPROMPT='$(_mnml_wrap MNML_RPROMPT)'
_mnml_bind_widgets
bindkey -M main "^M" buffer-empty
bindkey -M vicmd "^M" buffer-empty