-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
379 lines (322 loc) · 10.4 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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
#=============================
# LANG
#=============================
export LANG=en_US.UTF-8
#export TERM=xterm
bindkey -e
#=============================
# source OSTYPE file
#=============================
case "${OSTYPE}" in
darwin*)
source ~/.zsh.d/mac.zsh
;;
esac
#=============================
# terminal
#=============================
stty stop undef
#=============================
# zcompile
#=============================
zcompile ~/.zshrc
#=============================
# path
#=============================
PATH=$PATH:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:$HOME/bin:/opt/local/bin:/opt/local/sbin
export PATH
export MANPATH=/opt/local/man:/usr/share/man:$MANPATH
export LESS='-R'
export LESSOPEN='| /usr/local/bin/src-hilite-lesspipe.sh %s'
export GOPATH=$HOME
export PERL_CPANM_OPT="--local-lib=~/perl5"
export PATH=$HOME/perl5/bin:$PATH;
export PERL5LIB=$HOME/perl5/lib/perl5:$PERL5LIB;
export PATH=$PATH:/usr/local/opt/go/libexec/bin
#=============================
# fpath (zsh completion)
#=============================
fpath=(~/.zsh.d/zsh-completions/src ~/.zsh.d/custom-completions $fpath)
#=============================
# set prompt
#=============================
autoload colors
colors
#=============================
# antigen and prompt
#=============================
if [[ -e ~/.zsh.d/antigen.zsh ]] ; then
source ~/.zsh.d/antigen.zsh;
else
# antigenが無ければ昔のpromptを使う
source ~/.zsh.d/prompt.zsh;
fi
#=============================
# terminal title
#=============================
case "${TERM}" in
kterm*|xterm*)
precmd() {
echo -ne "\033]0;${USER}@${HOST%%.*}:${PWD}\007"
}
;;
esac
#=============================
# history
#=============================
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
setopt hist_ignore_dups # ignore duplication command history list
setopt share_history # share command history data
setopt extended_history
function history-all { history -E 1 }
setopt hist_ignore_all_dups
setopt hist_ignore_space
#=============================
# Search History
#=============================
autoload history-search-end
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end
bindkey "^P" history-beginning-search-backward-end
bindkey "^N" history-beginning-search-forward-end
#=============================
# setopt
#=============================
autoload -U compinit #補完機能
compinit -u
# autoload -U predict-on # 先方予測機能
# predict-on
setopt auto_cd
setopt auto_pushd
# --prefix=~/localというように「=」の後でも
#「~」や「=コマンド」などのファイル名展開を行う。
setopt magic_equal_subst
setopt correct # コマンド自動修正
setopt list_packed # 補完候補を詰めて表示
setopt nolistbeep # 補完表示時にビープ音を鳴らさない
setopt complete_aliases # エイリアスを設定したコマンドでも補完機能を使えるようにする
setopt transient_rprompt # コピペしやすいようにコマンド実行後は右プロンプトを消す。
setopt long_list_jobs # 内部コマンド jobs の出力をデフォルトで jobs -l にする
setopt list_types # 補完候補一覧でファイルの種別をマーク表示
setopt complete_in_word # カーソル位置で補完する。
setopt glob_complete # globを展開しないで候補の一覧から補完する。
setopt hist_expand # 補完時にヒストリを自動的に展開する。
setopt no_beep # 補完候補がないときなどにビープ音を鳴らさない。
setopt numeric_glob_sort # 辞書順ではなく数字順に並べる。
setopt rm_star_wait # rm * を実行する前に確認
setopt hist_no_store # history コマンドを history に保存しない
setopt mark_dirs # ファイル名の展開でディレクトリにマッチした場合 末尾に / を付加
setopt no_flow_control # disable C-q, C-s
setopt auto_param_slash # ディレクトリ名の補完で末尾の / を自動的に付加し、次の補完に備える
setopt brace_ccl # {a-c} を a b c に展開する機能を使えるようにする
#=============================
# zstyle
#=============================
# 補完のグループ化
zstyle ':completion:*' format '%B%d%b'
zstyle ':completion:*' group-name ''
zstyle ':completion:*:default' menu select=2 # 補完メニューの表示
zstyle ':completion:*:default' list-colors "" # 補完候補の色分け
zstyle ':completion:*' use-cache true # 補完候補をキャッシュする。
zstyle ':completion:*' verbose yes # 詳細な情報を使う。
zstyle ':completion:sudo:*' environ PATH="$SUDO_PATH:$PATH" # sudo時にはsudo用のパスも使う。
zstyle ':vcs_info:*' enable git # svn hg bzr # git以外ではvcs_infoを利用しない
#=============================
# misc
#=============================
# 実行したプロセスの消費時間が3秒以上かかったら
# 自動的に消費時間の統計情報を表示する。
REPORTTIME=3
chpwd_functions=($chpwd_functions dirs) # ディレクトリが変わったらディレクトリスタックを表示。
WORDCHARS=${WORDCHARS:s,/,,} # 「/」も単語区切りとみなす。
#=============================
# alias
#=============================
alias v='vim'
alias n='nvim'
alias vi='vim'
alias eh='vim /etc/hosts'
alias g='git'
alias cp='cp -i'
alias mv='mv -i'
# alias h='history 25'
# alias j='jobs -l'
alias grep='grep --color=auto'
# alias sudo='sudo -E '
# OSによる切り替えを行う
alias where="command -v"
# ls
case "${OSTYPE}" in
freebsd*|darwin*)
alias ls="ls -G -w"
;;
linux*)
alias ls="ls --color"
alias dstat-full='dstat -Tclmdrn'
alias dstat-mem='dstat -Tclm'
alias dstat-cpu='dstat -Tclr'
alias dstat-net='dstat -Tclnd'
alias dstat-disk='dstat -Tcldr'
;;
esac
alias la="ls -a"
alias lf="ls -F"
alias ll="ls -l"
alias du="du -h"
alias df="df -h"
alias su="su -l"
alias tmux="tmux -2"
alias ta='tmux a -d || tmux -f ~/.tmux.conf'
if [[ -f `command -v hub` ]] ; then alias git=hub ; fi
if [[ -f `command -v pry` ]] ; then alias p=pry ; fi
alias gst='git status -sb'
alias zcompdump_rebuild='rm -f ~/.zcompdump; compinit'
#=============================
# SSH + TMUX
#=============================
if [ -n "$TMUX" ];then
function ssh_tmux(){
eval server=\${$#}
eval tmux new-window -n "'${server}'" "'ssh $@'"
}
function mosh_tmux() {
tmux new-window -n $@ "exec mosh $@"
}
alias ssh=ssh_tmux
alias mosh=mosh_tmux
fi
#=============================
# use cdd on tmux
#=============================
# http://m4i.hatenablog.com/entry/2012/01/26/064329
. ~/bin/cdd
chpwd() {
_cdd_chpwd
}
#=============================
# source zsh
#=============================
if [ -f ~/.zsh.d/`hostname`.zsh ]; then
source ~/.zsh.d/`hostname`.zsh
fi
#=============================
# source private zsh
#=============================
if [ -f ~/.zsh.d/private.zsh ]; then
source ~/.zsh.d/private.zsh
fi
#=============================
# source autojump.zsh
#=============================
if [ -f ~/.zsh.d/autojump.zsh ]; then
source ~/.zsh.d/autojump.zsh
fi
#=============================
# source bd.zsh
#=============================
if [ -f ~/.zsh.d/bd.zsh ]; then
source ~/.zsh.d/bd.zsh
fi
#=============================
# for peco
#=============================
if [[ -f `command -v peco` ]] ; then
source ~/.zsh.d/peco.zsh
alias peco='peco --rcfile=~/.config/peco/config.json'
fi
#=============================
# sudo.vim http://blog.monoweb.info/article/2011120320.html
#=============================
sudo() {
local args
case $1 in
vi|vim)
args=()
for arg in $@[2,-1]
do
if [ $arg[1] = '-' ]; then
args[$(( 1+$#args ))]=$arg
else
args[$(( 1+$#args ))]="sudo:$arg"
fi
done
command vim $args
;;
*)
command sudo $@
;;
esac
}
#=============================
# sheet
#=============================
if [[ -f `command -v sheet` ]] ; then
compdef _sheets sheet
function _sheets {
local -a cmds
_files -W ~/.sheets/ -P '~/.sheets/'
cmds=('list' 'edit' 'copy')
_describe -t commands "subcommand" cmds
return 1;
}
fi
#=============================
# mosh completion
#=============================
compdef mosh=ssh
# The next line enables zsh completion for gcloud.
if [[ -f ~/google-cloud-sdk/completion.bash.inc ]] ; then
source $HOME/google-cloud-sdk/completion.zsh.inc
export PATH=$HOME/google-cloud-sdk/bin:$PATH
fi
#=============================
# ssh-agent http://blog.manaten.net/entry/ssh-agent-forward
#=============================
SSH_AGENT_FILE="$HOME/.ssh-agent-info"
test -f $SSH_AGENT_FILE && source $SSH_AGENT_FILE
if ! ssh-add -l >& /dev/null ; then
ssh-agent > $SSH_AGENT_FILE
source $SSH_AGENT_FILE
ssh-add
fi
AGENT_SOCK_FILE="/tmp/ssh-agent-$USER"
SSH_AGENT_FILE="$HOME/.ssh-agent-info"
if test $SSH_AUTH_SOCK ; then
if [ $SSH_AUTH_SOCK != $AGENT_SOCK_FILE ] ; then
ln -sf $SSH_AUTH_SOCK $AGENT_SOCK_FILE
export SSH_AUTH_SOCK=$AGENT_SOCK_FILE
fi
else
test -f $SSH_AGENT_FILE && source $SSH_AGENT_FILE
if ! ssh-add -l >& /dev/null ; then
ssh-agent > $SSH_AGENT_FILE
source $SSH_AGENT_FILE
ssh-add
fi
fi
#=============================
# any-frame http://qiita.com/mollifier/items/81b18c012d7841ab33c3
#=============================
zstyle ":anyframe:selector:" use peco
zstyle ":anyframe:selector:peco:" command 'peco --layout=bottom-up'
bindkey '^r' anyframe-widget-execute-history
bindkey '^xp' anyframe-widget-put-history
bindkey '^x^p' anyframe-widget-put-history
bindkey '^s' anyframe-widget-cd-ghq-repository
bindkey '^xk' anyframe-widget-kill
bindkey '^x^k' anyframe-widget-kill
bindkey '^xi' anyframe-widget-insert-git-branch
bindkey '^x^i' anyframe-widget-insert-git-branch
bindkey '^xf' anyframe-widget-insert-filename
bindkey '^x^f' anyframe-widget-insert-filename
bindkey -M emacs '^P' history-substring-search-up
bindkey -M emacs '^N' history-substring-search-down
#=============================
# http://qiita.com/laiso/items/8a30e3656c980863ccfa
#=============================
propen() {
local current_branch_name=$(git symbolic-ref --short HEAD | xargs perl -MURI::Escape -e 'print uri_escape($ARGV[0]);')
hub browse -- pull/${current_branch_name}
}