-
Notifications
You must be signed in to change notification settings - Fork 9
/
zshrc
312 lines (282 loc) · 8.84 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
# Enable keychain
if command -v keychain >/dev/null; then
KEY=''
if [ -f "$HOME/.ssh/id_ed25519" ]; then
KEY='id_ed25519'
elif [ -f "$HOME/.ssh/id_rsa" ]; then
KEY='id_rsa'
fi
if [ -n "$KEY" ]; then
if [ "$(uname)" = 'Darwin' ]; then
eval `keychain --eval --quiet --agents ssh --inherit any $KEY`
else
eval `keychain --eval --quiet --agents ssh $KEY`
fi
fi
unset KEY
fi
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.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
# Make the $path array have unique values.
typeset -U path
if [ -e /proc/version ] && grep -q Microsoft /proc/version; then
# See https://github.com/microsoft/WSL/issues/352
if [[ "$(umask)" = *'000' ]]; then
if [ -e /etc/login.defs ] && grep -q '^[[:space:]]*USERGROUPS_ENAB[[:space:]]\{1,\}yes' /etc/login.defs; then
umask 002
else
umask 022
fi
fi
fi
if command -v brew >/dev/null; then
BREW_PREFIX="$(brew --prefix)"
fi
# See ZSHZLE(1).
#
# If one of the VISUAL or EDITOR environment variables contain the string `vi'
# when the shell starts up then it will be `viins', otherwise it will be
# `emacs'.
#
# Select keymap `emacs' for any operations by the current command
bindkey -e
# Use Zinit
if [ ! -e "${XDG_DATA_HOME:-$HOME/.local/share}/zinit/zinit.git/zinit.zsh" ]; then
sh -c "$(curl -fsSL https://git.io/zinit-install)"
fi
source "${XDG_DATA_HOME:-$HOME/.local/share}/zinit/zinit.git/zinit.zsh"
# Homebrew shell completion
if [ -n "$BREW_PREFIX" ]; then
zinit fpath -f "$BREW_PREFIX/share/zsh/site-functions"
fi
# Additional completion definitions for Zsh
if is-at-least 5.3; then
zinit ice lucid wait'0' blockf
else
zinit ice blockf
fi
zinit light zsh-users/zsh-completions
# A Zsh theme
zinit light romkatv/powerlevel10k
# A lightweight start point of shell configuration
zinit light yous/vanilli.sh
# Jump quickly to directories that you have visited "frecently." A native ZSH
# port of z.sh.
if is-at-least 5.3; then
zinit ice lucid wait'0' blockf
else
zinit ice blockf
fi
zinit light agkozak/zsh-z
# Syntax-highlighting for Zshell – fine granularity, number of features, 40 work
# hours themes (short name F-Sy-H)
if is-at-least 5.3; then
zinit ice lucid wait'0' atinit'zicompinit; zicdreplay'
else
autoload -Uz compinit
compinit
zinit cdreplay -q
fi
zinit light zdharma-continuum/fast-syntax-highlighting
# ZSH port of Fish shell's history search feature. zsh-syntax-highlighting must
# be loaded before this.
is-at-least 5.3 && zinit ice lucid wait'[[ $+functions[_zsh_highlight] -ne 0 ]]' atload' \
zmodload zsh/terminfo; \
[ -n "${terminfo[kcuu1]}" ] && bindkey "${terminfo[kcuu1]}" history-substring-search-up; \
[ -n "${terminfo[kcud1]}" ] && bindkey "${terminfo[kcud1]}" history-substring-search-down; \
bindkey -M emacs "^P" history-substring-search-up; \
bindkey -M emacs "^N" history-substring-search-down; \
bindkey -M vicmd "k" history-substring-search-up; \
bindkey -M vicmd "j" history-substring-search-down; \
'
zinit light zsh-users/zsh-history-substring-search
if ! is-at-least 5.3; then
zmodload zsh/terminfo
[ -n "${terminfo[kcuu1]}" ] && bindkey "${terminfo[kcuu1]}" history-substring-search-up
[ -n "${terminfo[kcud1]}" ] && bindkey "${terminfo[kcud1]}" history-substring-search-down
bindkey -M emacs '^P' history-substring-search-up
bindkey -M emacs '^N' history-substring-search-down
bindkey -M vicmd 'k' history-substring-search-up
bindkey -M vicmd 'j' history-substring-search-down
fi
# Set title
__prompt_precmd() {
# Username, hostname and current directory
local window_title="$(print -Pn '%n@%m: %~')"
local tab_title="$(__prompt_tab_title)"
# Inside screen or tmux
case "$TERM" in
screen*|tmux*)
# Set window title
print -n '\e]0;'
echo -n "$window_title"
print -n '\a'
# Set window name
print -n '\ek'
echo -n "$tab_title"
print -n '\e\\'
;;
cygwin|putty*|rxvt*|xterm*)
# Set window title
print -n '\e]2;'
echo -n "$window_title"
print -n '\a'
# Set tab name
print -n '\e]1;'
echo -n "$tab_title"
print -n '\a'
;;
*)
# Set window title if it's available
zmodload zsh/terminfo
if [[ -n "$terminfo[tsl]" ]] && [[ -n "$terminfo[fsl]" ]]; then
echoti tsl
echo -n "$window_title"
echoti fsl
fi
;;
esac
}
# Show the current job
__prompt_preexec() {
local tab_title="$(__prompt_tab_title "$1")"
# Inside screen or tmux
case "$TERM" in
screen*|tmux*)
# Set window name
print -n '\ek'
echo -n "$tab_title"
print -n '\e\\'
;;
cygwin|putty*|rxvt*|xterm*)
# Set tab name
print -n '\e]1;'
echo -n "$tab_title"
print -n '\a'
;;
esac
}
__prompt_tab_title() {
if [ "$#" -eq 1 ]; then
setopt local_options extended_glob
# Return the first command excluding env, options, sudo, ssh
print -rn ${1[(wr)^(*=*|-*|sudo|ssh)]:gs/%/%%}
else
# `%40<..<` truncates following string longer than 40 characters with `..`.
# `%~` is current working directory with `~` instead of full `$HOME` path.
# `%<<` sets the end of string to truncate.
print -Pn '%40<..<%~%<<'
fi
}
precmd_functions+=(__prompt_precmd)
preexec_functions+=(__prompt_preexec)
# Load autojump
if command -v autojump >/dev/null; then
if [ -f "$HOME/.autojump/etc/profile.d/autojump.sh" ]; then
source "$HOME/.autojump/etc/profile.d/autojump.sh"
elif [ -f /etc/profile.d/autojump.zsh ]; then
source /etc/profile.d/autojump.zsh
elif [ -f /usr/share/autojump/autojump.zsh ]; then
source /usr/share/autojump/autojump.zsh
elif [ -n "$BREW_PREFIX" ]; then
if [ -f "$BREW_PREFIX/etc/autojump.sh" ]; then
source "$BREW_PREFIX/etc/autojump.sh"
fi
fi
elif [ -f "$HOME/.autojump/etc/profile.d/autojump.sh" ]; then
source "$HOME/.autojump/etc/profile.d/autojump.sh"
fi
# Load fzf
if [ -f ~/.fzf.zsh ]; then
export FZF_DEFAULT_OPTS='--bind ctrl-f:page-down,ctrl-b:page-up'
source ~/.fzf.zsh
# fshow - git commit browser
fshow() {
git log --graph --color=always \
--format="%C(auto)%h%d %s %C(green)%cr%C(reset)" "$@" |
fzf --ansi --no-sort --reverse --tiebreak=index --bind=ctrl-s:toggle-sort \
--preview "echo {} | grep -o '[a-f0-9]\{7\}' | head -1 |
xargs -I % sh -c 'git show --color=always %'" \
--bind "ctrl-m:execute:
(grep -o '[a-f0-9]\{7\}' | head -1 |
xargs -I % sh -c 'git show --color=always % | less -R') << 'FZF-EOF'
{}
FZF-EOF"
}
fi
# Load mise
if command -v mise >/dev/null; then
eval "$(mise activate zsh)"
elif [ -e "$HOME/.local/bin/mise" ]; then
eval "$("$HOME/.local/bin/mise" activate zsh)"
fi
# Load asdf
if [ -n "$BREW_PREFIX" ]; then
if [ -e "$BREW_PREFIX/opt/asdf/libexec/asdf.sh" ]; then
. "$BREW_PREFIX/opt/asdf/libexec/asdf.sh"
fi
elif [ -e "$HOME/.asdf/asdf.sh" ]; then
. "$HOME/.asdf/asdf.sh"
fi
# Load chruby
if [ -e /usr/local/share/chruby/chruby.sh ]; then
source /usr/local/share/chruby/chruby.sh
source /usr/local/share/chruby/auto.sh
elif [ -n "$BREW_PREFIX" ]; then
if [ -e "$BREW_PREFIX/opt/chruby/share/chruby/chruby.sh" ]; then
source "$BREW_PREFIX/opt/chruby/share/chruby/chruby.sh"
source "$BREW_PREFIX/opt/chruby/share/chruby/auto.sh"
fi
fi
# Load rbenv
if command -v rbenv >/dev/null || [ -e "$HOME/.rbenv" ]; then
eval "$(rbenv init - zsh)"
fi
# Load pyenv
if command -v pyenv >/dev/null; then
eval "$(pyenv init - zsh)"
if command -v pyenv-virtualenv-init >/dev/null; then
eval "$(pyenv virtualenv-init - zsh)"
fi
elif [ -e "$HOME/.pyenv" ]; then
eval "$(pyenv init - zsh)"
if [ -e "$HOME/.pyenv/plugins/pyenv-virtualenv" ]; then
eval "$(pyenv virtualenv-init - zsh)"
fi
fi
# Load RVM into a shell session *as a function*
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
source "$HOME/.rvm/scripts/rvm"
if [[ "$(type rvm | head -n 1)" == "rvm is a shell function" ]]; then
# Add RVM to PATH for scripting
case ":$PATH:" in
*":$HOME/.rvm/bin:"*)
;;
*)
export PATH="$PATH:$HOME/.rvm/bin"
esac
export rvmsudo_secure_path=1
# Use right RVM gemset when using tmux
if [ -n "$TMUX" ]; then
rvm use default
pushd -q ..
popd -q
fi
fi
fi
# Unset local functions and variables
unset BREW_PREFIX
# Define aliases
if [ -f "$HOME/.aliases" ]; then
source "$HOME/.aliases"
fi
# Source local zshrc
if [ -f "$HOME/.zshrc.local" ]; then
source "$HOME/.zshrc.local"
fi
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh