-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.zshrc
332 lines (273 loc) · 12 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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
#!/usr/bin/env zsh
# Powerlevel10k instant prompt
# https://github.com/romkatv/powerlevel10k/tree/d394a4e#how-do-i-enable-instant-prompt
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
# Dotfiles
export DOTFILES=${HOME}/Dropbox/dotfiles
# PATH
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/command.html
PATH=$(command -p getconf PATH):${PATH}
[ -d /usr/local/bin ] && PATH=/usr/local/bin:${PATH}
# set PATH so it includes applicable private `bin`s
[ -d "${HOME}/bin" ] && PATH=${HOME}/bin:${PATH}
[ -d "${HOME}/.local/bin" ] && PATH=${HOME}/.local/bin:${PATH}
# Path to your oh-my-zsh installation.
export ZSH=${HOME}/.oh-my-zsh
# Use a custom folder other than $ZSH/custom
# ZSH_CUSTOM=/path/to/new-custom-folder
# https://reddit.com/comments/g1a2qd/_/fneil10
export ZSH_CUSTOM=${DOTFILES}/custom
export ZSHCUSTOM=${ZSH_CUSTOM}
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
# powerlevel10k
# https://github.com/romkatv/powerlevel10k/blob/48c6ff4/README.md#oh-my-zsh
# ZSH_THEME
if [ -r "${ZSH_CUSTOM}/themes/powerlevel10k/powerlevel10k.zsh-theme" ] && [ $((LINES * COLUMNS)) -ge 1920 ]; then
ZSH_THEME=powerlevel10k/powerlevel10k
else
ZSH_THEME=robbyrussell
fi
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in $ZSH/themes
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE=true
# Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE=true
# Uncomment the following line to disable bi-weekly auto-update checks.
DISABLE_AUTO_UPDATE=true
# Uncomment the following line to automatically update without prompting.
DISABLE_UPDATE_PROMPT=true
# Uncomment the following line to change how often, in days, to autoupdate.
export UPDATE_ZSH_DAYS=1
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS=true
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS=true
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE=true
# Uncomment the following line to enable command auto-correction.
# This is an unhelpful, badly documented setting and should not be enabled.
ENABLE_CORRECTION=false
# Uncomment the following line to display red dots whilst awaiting completion.
COMPLETION_WAITING_DOTS=true
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY=true
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
HIST_STAMPS=yyyy-mm-dd
# set maximum number of lines in history file
# https://unix.stackexchange.com/a/273863
export HISTSIZE=$((2 ** 31)) # 2,147,483,648
export SAVEHIST=$((2 * HISTSIZE)) # 4,294,967,296
# ~/.zcompdump override
# https://github.com/ohmyzsh/ohmyzsh/commit/d2fe03d
export ZSH_COMPDUMP=${ZDOTDIR:=${HOME}}/.zcompdump
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins
# Custom plugins may be added to $ZSH_CUSTOM/plugins
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins+=(
git
gunstage
samefile
git-default-branch
)
[ "$(uname)" = Darwin ] && plugins+=(
fast-syntax-highlighting
)
# trapd00r/LS_COLORS: .dircolors to override Oh My Zsh’s `ls -G` for coreutils
# https://github.com/ohmyzsh/ohmyzsh/blob/d0d01c0/lib/theme-and-appearance.zsh
# https://github.com/trapd00r/LS_COLORS/tree/6a4d29b#installation
# https://github.com/paulirish/dotfiles/blob/ccccd07/.dircolors
[ -r "${HOME}/.local/share/lscolors.sh" ] && . "${HOME}/.local/share/lscolors.sh"
. "${ZSH}/oh-my-zsh.sh"
# User configuration
# MANPATH
# if `man -w` does not fail, then add its output to `MANPATH`
[ "$(
man -w >/dev/null 2>&1
printf %d $?
)" -eq 0 ] && MANPATH=$(man -w):${MANPATH}
# if `MANPATH` is still empty and `/usr/local/man` exists,
# then set `MANPATH` to `/usr/local/man`
[ -z "${MANPATH}" ] && [ -d /usr/local/man ] && MANPATH=/usr/local/man
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# $EDITOR: access favorite with `edit`
# Set preferred editor if it is available
# https://stackoverflow.com/a/14755066
# https://github.com/wililupy/snapd/commit/0573e7b
if command -v nvim >/dev/null 2>&1; then
# https://unix.stackexchange.com/q/4859#comment5812_4861
EDITOR=$(command -v nvim)
elif command -v vim >/dev/null 2>&1; then
EDITOR=$(command -v vim)
elif command -v vi >/dev/null 2>&1; then
EDITOR=$(command -v vi)
else
EDITOR=$(command -v nano)
fi
export EDITOR
# https://github.com/koalaman/shellcheck/wiki/SC2139/db553bf16fcb86b2cdc77b835e75b9121eacc429#this-expands-when-defined-not-when-used-consider-escaping
alias editor='${EDITOR}'
alias edit=editor
# https://unix.stackexchange.com/a/4861
export VISUAL=${EDITOR}
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# iTerm
[ -r "${HOME}/.iterm2_shell_integration.zsh" ] && . "${HOME}/.iterm2_shell_integration.zsh"
# GPG signing with macOS-compatible Linux
# https://docs.github.com/en/github/authenticating-to-github/telling-git-about-your-signing-key#telling-git-about-your-gpg-key
# https://reddit.com/comments/dk53ow/_/f50146x
GPG_TTY=$(tty)
export GPG_TTY
# Homebrew
# https://github.com/Homebrew/brew/blob/a5b6c5f/Library/Homebrew/diagnostic.rb#L432-L435
if command -v brew >/dev/null 2>&1; then
# https://github.com/driesvints/dotfiles/blob/388baf1/path.zsh#L17
BREW_PREFIX=$(brew --prefix)
[ -d "${BREW_PREFIX}/sbin" ] && PATH=${BREW_PREFIX}/sbin:${PATH}
# curl
[ -d "${BREW_PREFIX}/opt/curl/bin" ] && PATH=${BREW_PREFIX}/opt/curl/bin:${PATH}
# GNU Core Utils
# for `date`, `cat`, `ln`
# https://apple.stackexchange.com/a/135749
[ -d "${BREW_PREFIX}/opt/coreutils/libexec/gnubin" ] && PATH=${BREW_PREFIX}/opt/coreutils/libexec/gnubin:${PATH}
# GNU Find Utils
# for `find`, `xargs`, `locate`
[ -d "${BREW_PREFIX}/opt/findutils/libexec/gnubin" ] && PATH=${BREW_PREFIX}/opt/findutils/libexec/gnubin:${PATH}
# grep
# use latest via Homebrew but without the `g` prefix
# https://github.com/Homebrew/homebrew-core/blob/ba7a70f/Formula/grep.rb#L43-L46
[ -d "${BREW_PREFIX}/opt/grep/libexec/gnubin" ] && PATH=${BREW_PREFIX}/opt/grep/libexec/gnubin:${PATH}
# make
# use latest via Homebrew but without the `g` prefix
# https://github.com/Homebrew/homebrew-core/blob/9591758/Formula/make.rb#L37-L41
[ -d "${BREW_PREFIX}/opt/make/libexec/gnubin" ] && PATH=${BREW_PREFIX}/opt/make/libexec/gnubin:${PATH}
# sed
# https://github.com/Homebrew/homebrew-core/blob/8ec6f0e/Formula/gnu-sed.rb#L35-L39
[ -d "${BREW_PREFIX}/opt/gnu-sed/libexec/gnubin" ] && PATH=${BREW_PREFIX}/opt/gnu-sed/libexec/gnubin:${PATH}
# which
[ -d "${BREW_PREFIX}/opt/gnu-which/libexec/gnubin" ] && PATH=${BREW_PREFIX}/opt/gnu-which/libexec/gnubin:${PATH}
fi
# Rust Cargo
# if its `bin` is a directory, then add it to `PATH`
[ -d "${HOME}/.cargo/bin" ] && PATH=${HOME}/.cargo/bin:${PATH}
# Bashhub.com
[ -r "${HOME}/.bashhub/bashhub.zsh" ] && . "${HOME}/.bashhub/bashhub.zsh"
# npm without sudo
# https://github.com/sindresorhus/guides/blob/285270f/npm-global-without-sudo.md#3-ensure-npm-will-find-installed-binaries-and-man-pages
NPM_PACKAGES=${HOME}/.npm-packages
[ -d "${NPM_PACKAGES}/bin" ] && PATH=${PATH}:${NPM_PACKAGES}/bin
[ -d "${NPM_PACKAGES}/share/man" ] && MANPATH=${MANPATH}:${NPM_PACKAGES}/share/man
# RVM and rbenv are incompatible and shell references to RVM have to be removed
# https://github.com/rbenv/rbenv/blob/577f046/README.md#installation
# Add RVM to PATH for scripting
# Make sure this is the last PATH variable change
# export PATH=${PATH}:${HOME}/.rvm/bin
# Template repository
if [ -d "${HOME}/Dropbox/Template" ]; then
TEMPLATE=${HOME}/Dropbox/Template
elif [ -d "${HOME}/Code/ Template" ]; then
TEMPLATE=${HOME}/Code/ Template
elif [ -d "${HOME}/Code/Template" ]; then
TEMPLATE=${HOME}/Code/Template
fi
export TEMPLATE
# completion dots
# https://git.io/completion-dots-in-.zshrc
expand-or-complete-with-dots() {
print -Pn "%F{red}...%f"
zle expand-or-complete
zle redisplay
}
# include hidden files in tab completion
# https://unix.stackexchange.com/a/366137
setopt GLOB_DOTS
# but hide `./` and `../`
# https://unix.stackexchange.com/q/308315#comment893697_308322
zstyle ':completion:*' special-dirs false
# https://github.com/TimButters/dotfiles/blob/3e03c81/zshrc#L46-L50
zstyle ':completion:*' group-name ''
zstyle ':completion:*:descriptions' format %F"{green}"%d%f
# zsh-completions
# https://github.com/Homebrew/homebrew-core/blob/7cf42e0/Formula/zsh-completions.rb#L18-L23
# https://github.com/zsh-users/zsh-completions/tree/f68950a#oh-my-zsh
[ -d "${ZSH_CUSTOM}/plugins/zsh-completions/src" ] && FPATH=${FPATH}:${ZSH_CUSTOM}/plugins/zsh-completions/src
autoload -U compinit && compinit
# share all commands from everywhere
# https://github.com/mcornella/dotfiles/blob/047eaa1/zshrc#L104-L105
setopt SHARE_HISTORY
# pyenv
[ -d "${HOME}/.pyenv/shims" ] && PATH=${HOME}/.pyenv/shims:${PATH}
# https://git.io/init_-_--no-rehash
# https://github.com/caarlos0/carlosbecker.com/commit/c5f04d6
pyenv() {
eval "$(command pyenv init - --no-rehash "${SHELL##*[-/]}")"
pyenv "$@"
}
# C, C++ headers
# https://apple.stackexchange.com/a/372600
if command -v xcrun >/dev/null 2>&1; then
CPATH=$(xcrun --show-sdk-path)/usr/include
export CPATH
fi
# Flutter
# https://github.com/flutter/website/blob/e5f725c/src/docs/get-started/install/_path-mac.md#user-content-update-your-path
# if `~/Code/Flutter/bin/flutter`’s an executable
# and `flutter`’s not in the PATH, then add it
if [ -x "${HOME}/Code/Flutter/bin/flutter" ]; then
if ! command -v flutter >/dev/null 2>&1; then
PATH=${PATH}:${HOME}/Code/Flutter/bin
fi
fi
# Android SDK
# if it’s a directory, then assign it the name `ANDROID_SDK_ROOT`
[ -d "${HOME}/Library/Android/sdk" ] && export ANDROID_SDK_ROOT=${HOME}/Library/Android/sdk
# pip
# location of Python packages on Linux
[ -d "${HOME}/.local/bin" ] && PATH=${HOME}/.local/bin:${PATH}
# rbenv
# https://hackernoon.com/the-only-sane-way-to-setup-fastlane-on-a-mac-4a14cb8549c8#6a04
# https://git.io/init_-_--no-rehash
# https://github.com/caarlos0/carlosbecker.com/commit/c5f04d6
[ -d "${HOME}/.rbenv/shims" ] && PATH=${HOME}/.rbenv/shims:${PATH}
rbenv() {
eval "$(command rbenv init - --no-rehash "${SHELL##*[-/]}")"
rbenv "$@"
}
# Radicle
# https://github.com/radicle-dev/radicle-docs/blob/a0f08f4/docs/getting-started/doc1-1.md#configuring-your-system
[ -d "${HOME}/.radicle/bin" ] && PATH=${HOME}/.radicle/bin:${PATH}
# automatically remove PATH duplicates
# https://github.com/mcornella/dotfiles/blob/e62b0d4/zshenv#L63-L67
# https://github.com/zsh-users/zsh/blob/a9061cc/StartupFiles/zshrc#L56-L57
# https://github.com/zsh-users/zsh/commit/db3f2d2
[ -n "${ZSH_VERSION}" ] &&
typeset -U PATH path CDPATH cdpath FPATH fpath MANPATH manpath &&
export PATH path CDPATH cdpath FPATH fpath MANPATH manpath
# powerlevel10k prompt
# customize prompt via `p10k configure` or edit `~/.p10k.zsh`
# if the theme is powerlevel10k,
[ powerlevel10k/powerlevel10k = "${ZSH_THEME}" ] &&
# and there is a file at ~/.p10k.zsh,
[ -r "${HOME}/.p10k.zsh" ] &&
# then source it
. "${HOME}/.p10k.zsh"