-
Notifications
You must be signed in to change notification settings - Fork 1
/
.zshrc
318 lines (277 loc) · 10 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
# to measure performance, enable below
# zmodload zsh/zprof
#=======================================================
# PATH, ENV
#=======================================================
ARCH=$(uname -m)
if [[ $ARCH == arm64 ]]; then
eval $(/opt/homebrew/bin/brew shellenv)
elif [[ $ARCH == x86_64 ]]; then
eval $(/usr/local/bin/brew shellenv)
fi
export PATH=$HOMEBREW_PREFIX/bin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/binutils/bin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/coreutils/libexec/gnubin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/findutils/libexec/gnubin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/gnu-tar/libexec/gnubin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/openssl/bin:$PATH
export PATH=$HOMEBREW_PREFIX/opt/curl/bin:$PATH
# curl-openssl があればそちらを優先
export PATH=$HOMEBREW_PREFIX/opt/curl-openssl/bin:$PATH
export PATH=$HOME/.poetry/bin:$PATH
export MANPATH=/opt/local/share/man:/opt/local/man:$MANPATH
export MANPATH=$HOMEBREW_PREFIX/opt/coreutils/libexec/gnuman:$MANPATH
export MANPATH=$HOMEBREW_PREFIX/opt/findutils/libexec/gnuman:$MANPATH
export MANPATH=$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnuman:$MANPATH
export MANPATH=$HOMEBREW_PREFIX/opt/gnu-tar/libexec/gnuman:$MANPATH
export MANPATH=$HOMEBREW_PREFIX/opt/gawk/share/man:$MANPATH
export MANPATH=$HOMEBREW_PREFIX/opt/erlang/lib/erlang/man:$MANPATH
export MANPAGER="col -b -x | nvim -R -c 'set ft=man' -"
# rbenv が homebrew で入れた openssl にデフォルトで依存しなくなったため
# homebrew 経由の openssl を見るように環境変数にて指定
export RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix openssl@1.1)"
# direnv
eval "$(direnv hook zsh)"
# To surpress direnv STDOUT log, set DIRENV_LOG_FORMAT to NULL
export DIRENV_LOG_FORMAT=
# asdf
. $(brew --prefix asdf)/libexec/asdf.sh
# Set PATH for npm
export NODE_PATH=$HOMEBREW_PREFIX/share/npm/lib/node_modules:$NODE_PATH
if type "npm" > /dev/null 2>&1; then
export NODE_PATH=$(npm root -g):$NODE_PATH
fi
export PATH=$PATH:./node_modules/.bin
# gopath
export GOPATH=$HOME/.go
export GO111MODULE=on
export PATH=$PATH:$GOROOT/bin
export PATH=$PATH:$GOPATH/bin
# Rust
if [ -d "$HOME/.cargo" ]; then
export PATH=~/.cargo/bin:$PATH
export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src"
fpath+=~/.zfunc
source ~/.cargo/env
fi
# Haskell
export PATH=$HOME/.local/bin:$PATH
# neovim
export XDG_CONFIG_HOME=$HOME/.config
# PostgreSQL
export PGDATA=$HOMEBREW_PREFIX/var/postgres
# Set library path
export LIBRARY_PATH=$LIBRARY_PATH:$HOMEBREW_PREFIX/lib
# for Hyper(electron based terminal app) to display Japanese languages
export LANG=ja_JP.UTF-8
# for pipenv
export PIPENV_VENV_IN_PROJECT=true
# for mysql(5.7)
export PATH=$HOMEBREW_PREFIX/opt/mysql@5.7/bin:$PATH
# java
# export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
# デフォルトのエディタ設定
export EDITOR=vim
export VISUAL=vim
# 履歴ファイルの保存先
export HISTFILE=${HOME}/.zsh_history
# メモリに保存される履歴の件数
export HISTSIZE=1000000
# 履歴ファイルに保存される履歴の件数
export SAVEHIST=1000000
#color
export LSCOLORS=gxfxxxxxcxxxxxxxxxgxgx
export LS_COLORS='di=01;36:ln=01;35:ex=01;32'
export LESS='-g -i -M -R -S -W -z-4 -x4'
export LESSOPEN='| $HOMEBREW_PREFIX/bin/src-hilite-lesspipe.sh %s'
# bat color
export BAT_THEME='gruvbox-dark'
export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc
#=======================================================
# alias
#=======================================================
# utils
alias ls='ls --color=auto --group-directories-first'
alias ll='ls -lh'
alias la='ll -A'
# cc
alias gcc='gcc-9'
# neovim
alias vi='nvim'
# ruby
alias be='DISABLE_SPRING=1 bundle exec'
# kubernetes
alias k='kubectl'
# typo
alias dc='cd'
# typora
alias typora='open -a Typora'
# set gnu commands as default
alias sed='gsed'
#=======================================================
# zplug
#=======================================================
# brew upgrade 等で zsh が起動しなくなったら下記ディレクトリのシンボリックリンクをチェック
export ZPLUG_HOME=$HOMEBREW_PREFIX/opt/zplug
source $ZPLUG_HOME/init.zsh
zplug "zplug/zplug"
zplug "zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-completions"
zplug "zsh-users/zsh-syntax-highlighting", defer:2
# zsh の起動が遅いので未インストールのものをチェックする工程を飛ばしている
# plugin をいじった場合にはここのコメントアウトを外すこと
# if ! zplug check --verbose; then
# printf "Install? [y/N]: "
# if read -q; then
# echo; zplug install
# fi
# fi
zplug load
#=======================================================
# prompt
#=======================================================
# Load required functions.
autoload -Uz add-zsh-hook
autoload -Uz vcs_info
autoload colors && colors
# Add hook for calling vcs_info before each command.
add-zsh-hook precmd vcs_info
# Set vcs_info parameters.
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' stagedstr '%F{green}S%f'
zstyle ':vcs_info:*' unstagedstr '%F{yellow}U%f'
zstyle ':vcs_info:*' formats ' - [%b%c%u]'
zstyle ':vcs_info:*' actionformats " - [%b%c%u|%F{cyan}%a%f]"
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b|%F{cyan}%r%f'
zstyle ':vcs_info:git*+set-message:*' hooks git_status
zstyle ':completion:*' list-colors 'di=36' 'ln=35' 'ex=32'
#大文字小文字を意識しない補完
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
# いろんな顔文字をランダムで表示したい
# (下記部分はバックグラウンドプロセスの数を表示している)
# %F{menta}%(1j. %j.)%f
KAOMOJIS=("( '-')" "( T-T)" "( .-.)" "( 0_0)" "( >_<)" "( *-*)" "( o_o)" "(′•_•)" "( 'm')" "(*'~')" "(*;-;)" "( @-@)")
KAOMOJI_LENGTH="${#KAOMOJIS[@]}"
KAOMOJI="${KAOMOJIS[${$((RANDOM % KAOMOJI_LENGTH + 1))}]}"
# いろんな顔文字ver
PROMPT='%2~${vcs_info_msg_0_}%F{magenta}%(1j. %j.)%f ${KAOMOJI} '
RPROMPT=''
#=======================================================
# zsh config
#=======================================================
# Ctrl-S を vim で有効にしたい
stty start undef
stty stop undef
# フロー制御を使わない
setopt no_flow_control
# タイポしているコマンドを指摘したい場合以下を有効に(ウザいので off にしている)
unsetopt correct
# 移動したディレクトリをスタックに積んでいく
setopt auto_pushd
# prompt 表示のたびに変数展開
setopt prompt_subst
# historyの共有
setopt share_history
# 重複を記録しない
setopt hist_ignore_dups
# ヒストリに追加されるコマンド行が古いものと同じなら古いものを削除
setopt hist_ignore_all_dups
# スペースで始まるコマンド行はヒストリリストから削除
setopt hist_ignore_space
# 余分な空白は詰めて記録
setopt hist_reduce_blanks
# 古いコマンドと同じものは無視
setopt hist_save_no_dups
# historyコマンドは履歴に登録しない
setopt hist_no_store
# 補完時にヒストリを自動的に展開
setopt hist_expand
# 履歴をインクリメンタルに追加
setopt inc_append_history
# 開始と終了を記録
setopt EXTENDED_HISTORY
# コマンドラインでもコメントアウトができるように
setopt interactive_comments
# ジョブの制御
setopt monitor
#=======================================================
# functions
#=======================================================
function killport() {
lsof -i4:$1 | tail -1 | awk '{ print $2}' | xargs kill -9
}
# function to echo $PATH
function echopath() { echo $PATH | awk '{gsub(":", "\n", $0); print $0}' }
# iTermのタブに現在のディレクトリと一つ上のディレクトリを表示
function chpwd() { ls -a; echo -ne "\033]0;$(pwd | rev | awk -F \/ '{print "/"$1"/"$2}'| rev)\007"}
function history-fzf() {
# BSD 系の `tail` コマンドには -r で逆順に出力するオプションが存在する
# 一方で GNU/Linux 系の `tail` コマンドには -r オプションが存在せず、
# 代わりに `tac`(= cat の逆さ読み)コマンドが用意されている
# 僕のデバイスでは brew で gnu の coreutils を入れているため後者を利用する
BUFFER=$(history -n 1 | tac | fzf --query "$LBUFFER")
CURSOR=$#BUFFER
zle reset-prompt
}
# zsh デフォルトのコマンド履歴インクリメンタルサーチを無効に
bindkey -r '^S'
# その上で history-fzf を登録
zle -N history-fzf
bindkey '^r' history-fzf
function git-repo-fzf() {
# ghq で管理していない dotfiles もリストに追加
local ghq_list_p="$(ghq list -p)\n$HOME/dotfiles"
local target_path=$(echo $ghq_list_p | fzf)
if [ -n "$target_path" ]; then
cd $target_path
# ここで vcs_info を呼び出さないとディレクトリ移動後の初回のプロンプト表示で
# 移動前の vcs の情報が表示されてしまう
vcs_info
zle reset-prompt
fi
}
zle -N git-repo-fzf
bindkey '^h' git-repo-fzf
# functions for GitHub
function pr-list() {
gh api --paginate 'repos/:owner/:repo/pulls?state=open' | jq -r '.[] | [.number, .user.login, .title] | @tsv' | fzf
}
# private
function private-get-pr-num() {
if [ -n "$1" ]; then
echo $1
else
echo $(pr-list | cut -f 1)
fi
}
function pr-checkout() {
local pr_num=$(private-get-pr-num $1)
if [ -n "$pr_num" ]; then
gh pr checkout $pr_num
fi
}
function pr-open() {
local pr_num=$(private-get-pr-num $1)
if [ -n "$pr_num" ]; then
gh pr view -w $pr_num
fi
}
# filter which comamnds to be stored in history
zshaddhistory() {
local line=${1%%$'\n'}
local cmd=${line%% *}
# commands only passing conditions below will be added to history
[[ ${cmd} != (l[sal])
&& ${cmd} != 'cd'
&& ${line} != 'vi'
&& "$(command -v $cmd)" != ''
]]
}
# コマンドラインの編集を EDITOR 変数に設定してあるエディタから行えるように
autoload -Uz edit-command-line
zle -N edit-command-line
bindkey '^x' edit-command-line
# emacs-like keybind
bindkey -e