-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc.m4
277 lines (211 loc) · 5.97 KB
/
.zshrc.m4
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
m4_dnl Changing quoting/escaping characters to something that won't be used!
m4_changequote(`<<<@@||',`||@@>>>')
# This .zshrc is sourced only on interactive sessions.
# This script sets up interactive utilities.
# Global options
HISTFILE="$HOME/.zsh_history"
HISTSIZE=10000
SAVEHIST=10000
DIRSTACKSIZE=20
setopt \
appendhistory \
autocd \
autopushd \
pushdsilent \
extendedglob \
nomatch \
interactivecomments \
hist_ignore_all_dups \
hist_ignore_space \
auto_continue \
check_jobs \
hup \
monitor \
notify \
prompt_subst
unsetopt beep
# Completions
zstyle :compinstall filename "${HOME}/.zshrc"
autoload -Uz compinit
compinit
# ZSH Environment Variables
export TTY="$(tty)"
m4_ifelse(PH_SYSTEM, NIXOS,
HELPDIR="${HELPDIR:-/run/current-system/sw/share/zsh/${ZSH_VERSION}/help}"
, PH_SYSTEM, CYGWIN,
HELPDIR="${HELPDIR:-/usr/share/zsh/${ZSH_VERSION}/help}"
)
# ZSH Functions
m4_include(shell_functions.conf.m4)
: '
eval-unpack - Evaluate an expression and unpack its STDOUT, STDERR and exit code
into the passed variables.
Usage: eval-unpack <command> [stdout_variable] [stderr_variable] [exit_code_variable]
'
eval-unpack () {
# normal eval returns just 0 when given no parameters
if [[ "$#" -lt 1 ]]; then
return 0
fi
local x y z
local unpacked_stdout="${2:-x}"
local unpacked_stderr="${3:-y}"
local unpacked_exit="${4:-z}"
unset "$unpacked_stdout" "$unpacked_stderr" "$unpacked_exit"
eval "$(
(eval "$1") \
> >(eval "$unpacked_stdout=$(cat); typeset -p $unpacked_stdout") \
2> >(eval "$unpacked_stderr=$(cat); typeset -p $unpacked_stderr"); \
eval "$unpacked_exit=$?; \
typeset -p $unpacked_exit"
)"
}
: '
set-title - Set the shell title
'
set_title() {
# emacs terminal does not support settings the title
(( ${+EMACS} )) && return
# tell the terminal we are setting the title
print -n '\e]0;'
# show hostname if connected through ssh
[[ -n $SSH_CONNECTION ]] && print -Pn '(%m) '
case $1 in
expand-prompt)
print -Pn $2;;
ignore-escape)
print -rn $2;;
esac
# end set title
print -n '\a'
}
# ZSH Aliases
m4_include(shell_aliases.conf.m4)
# Sets up `help` command similar to bash.
unalias run-help 2>/dev/null
autoload run-help
alias help='run-help'
# ZSH Prompt
# PROMPT is set synchronously
# RPROMPT is set asynchronously
# this must be run in the current shell context, and not in subshells
precmd_job_count () {
ph_job_count=${(M)#${jobstates%%:*}:#running}r/${(M)#${jobstates%%:*}:#suspended}s
if [[ $ph_job_count == '0r/0s' ]]; then
ph_job_count=''
else
ph_job_count="[$ph_job_count]"
fi
}
ph_is_in_git_repo=false
chpwd_git_repo() {
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
ph_is_in_git_repo=true
else
ph_is_in_git_repo=false
fi
}
rprompt_git_status () {
local ref branch git_status
if $ph_is_in_git_repo; then
ref=$(git symbolic-ref HEAD 2> /dev/null)
branch="${ref#refs/heads/}"
if test -z "$(command git status --porcelain --ignore-submodules -unormal 2>/dev/null)"; then
git_status=''
else
git_status='⚡' # or try: Δ
fi
printf '%s' "$git_status($branch)"
return 0
else
return 1
fi
}
create_rprompt () {
local git_status
local rprompt='%F{104} '
if [[ -n "$ph_job_count" ]]; then
rprompt+="$ph_job_count "
fi
if git_status="$(rprompt_git_status)"; then
rprompt+="$git_status "
fi
rprompt+='%f%F{81}%y%f %F{110}%*%f'
printf '%s' "$rprompt"
}
ph_async_rprompt_file="$TMPDIR/zsh_rprompt_$$"
ph_async_rprompt_pid=0
precmd_rprompt () {
async () {
printf '%s' "$(create_rprompt)" > "$ph_async_rprompt_file"
kill -s USR1 $$
}
if [[ "${ph_async_rprompt_pid}" != 0 ]]; then
kill -s HUP $ph_async_rprompt_pid >/dev/null 2>&1 || :
fi
async &!
ph_async_rprompt_pid=$!
}
TRAPUSR1 () {
RPROMPT="$(cat "$TMPDIR/zsh_rprompt_$$")"
ph_async_rprompt_pid=0
zle reset-prompt
}
PROMPT='%F{150}»»%f '
if [[ -n $SSH_CONNECTION ]]; then
PROMPT+='%F{100}%n%f ➜ %F{112}%m%f '
fi
PROMPT+='%F{100}%B${PWD/#$HOME/~}%b%f
%F{180}%(!.%(?.♔.♚).%(?.♖.♜))%f '
RPROMPT=''
# ZSH Title
precmd_set_title () {
set_title 'expand-prompt' '$SHELL: %~'
}
preexec_set_title () {
set_title 'ignore-escape' "$2: ${PWD/#$HOME/~}"
}
# ZSH Hooks
# Hooking into pre-prompt commands
precmd_functions=($precmd_functions precmd_job_count precmd_rprompt precmd_set_title)
preexec_functions=($preexec_functions preexec_set_title)
chpwd_functions=($chpwd_functions chpwd_git_repo)
zshexit () {
rm --force "$ph_async_rprompt_file"
}
# ZSH keys
# Enable Vi key bindings
bindkey -v
# Show [NORMAL] status during vi command mode
function zle-line-init zle-keymap-select {
old_rprompt="${RPROMPT}"
vim_rprompt='%F{105}${${KEYMAP/vicmd/[% NORMAL]}/(main|viins)/}%f'
RPROMPT="${vim_rprompt}${RPROMPT}"
zle reset-prompt
RPROMPT="${old_rprompt}"
}
zle -N zle-keymap-select
# Enable partial search (and jump to the end)
autoload -U history-search-end
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end
bindkey "^[[A" history-beginning-search-backward-end
bindkey "^[[B" history-beginning-search-forward-end
# Allows one to use Ctrl + Z to switch between foreground and background
_ctrl-z () {
if [[ $#BUFFER -eq 0 ]]; then
BUFFER="fg"
zle accept-line
else
zle push-input
zle clear-screen
fi
}
zle -N _ctrl-z
bindkey '^Z' _ctrl-z
# Shift + Tab will now always enter a literal tab
# Works on Cygwin and Kitty
# Also it does prevent reverse tabbing when autocomplete starts, but you can use arrow keys instead
bindkey -s '\e[Z' '^V^I'
# Add Syntax Highlighting to ZSH
source "${HOME}/.dotfiles-modules/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"