-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.zshrc
executable file
·1432 lines (1118 loc) · 32.9 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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Start {{{
# コメントアウトを外すと、 .zshrc の処理時間を表示する (猫も走らない)
# __anekos_start_at=$(date +%s.%3N)
# }}}
# ENV {{{
[ -f ~/.envrc ] && source ~/.envrc
export LINAME_EDITOR='gvim -f'
export DARCS_ALWAYS_COLOR=1
case "$OSTYPE" in
linux*)
export TERMCMD=urxvt
;;
esac
export ANSIBLE_COW_SELECTION=random
# }}}
# Util functions {{{
function has-command () {
which "$1" > /dev/null 2>&1
}
function has-package () {
case "$HOST" in
*)
pacman -Qi "$1" > /dev/null 2>&1
;;
esac
}
function parent-pid () {
ps -h -o ppid -p "$1" | tr -d ' '
}
function file-size () {
stat --format '%s' "$@"
}
# ウィンドウが、表示されていなければ 1
function is-unmapped () {
if [ -z "$WINDOWID" ]
then
return 1
else
# 一度、親(端末)のウィンドウが削除された後に、復活していると WINDOWID が不正なものになる
# tmux attach などで起る
# ので、エラー出力は捨ててしまう
xwininfo -id "$WINDOWID" 2>&1 | grep '^ Map State: IsUnMapped' &> /dev/null
fi
}
# }}}
# 猫走る {{{
if [ -z "$__anekos_start_at" ]
then
function () {
local pcmd="$(ps --no-header -o cmd --pid `ps --pid $$ -o ppid --no-header`)" # 親プロセス名
# script 内では走らせない
[[ "$pcmd" =~ '^script ?.*' ]] && return 0
local screen_rows=`tput lines`
local screen_cols=`tput cols`
if [ "$screen_rows" -gt 20 -a "$screen_cols" -gt 90 -a "$TERM" != "linux" ]
then
if has-command nyancat
then
nyancat -f 5 --no-count --no-title -e
#elif has-command ~/script/shell/cat
#then
# ~/script/shell/cat
else
echo -e '\e[H\e[2J
\e[1;36m.
\e[1;36m/#\
\e[1;36m/###\ \e[1;37m # \e[1;36m| *
\e[1;36m/p^###\ \e[1;37m a##e #%" a#"e 6##% \e[1;36m| | |-^-. | | \ /
\e[1;36m/##P^q##\ \e[1;37m.oOo# # # # # \e[1;36m| | | | | | X
\e[1;36m/##( )##\ \e[1;37m%OoO# # %#e" # # \e[1;36m| | | | ^._.| / \ \e[0;37mTM
\e[1;36m/###P q#,^\
\e[1;36m/P^ ^q\ \e[0;37mTM
'
fi
fi
}
fi
# }}}
# 自動でログを保存する {{{
__anekos_enable_auto_logging=0
function __anekos_auto_script_clean () {
[ -e "$__anekos_scripted" ] && rm "$__anekos_scripted"
}
function logall () {
if [ -n "$__anekos_scripted" ]
then
echo 'Already logging' 1>&2
return
fi
export __anekos_scripted="/tmp/terminal-log/$$.log"
[ -d /tmp/terminal-log/ ] || mkdir /tmp/terminal-log/
trap __anekos_auto_script_clean EXIT
script --quiet --flush >(esclr | tee --append "$__anekos_scripted" /tmp/terminal-log/all.log > /dev/null)
exit
}
function fix () {
mkdir -p /tmp/terminal-cwd/
local tpid="$(~/script/terminal/pid)"
if [ -z "$tpid" ]
then
echo 'Failed: ~/script/terminal/pid' 1>&2
else
echo "${1:-$PWD}" > "/tmp/terminal-cwd/$tpid.cwd"
fi
}
if [ -z "$__anekos_start_at" ]
then
# fix が実行されていれば、そのディレクトリ
# そうでなければ、ターミナルの cwd
function __cd_working_directory () {
[ -x ~/script/terminal/pid ] || return 0
local tpid="$(~/script/terminal/pid $$)"
if [ -n "$tpid" -a -e /tmp/terminal-cwd/$tpid.cwd ]
then
cd "$(cat /tmp/terminal-cwd/$tpid.cwd)"
# else
# cd "$(readlink "/proc/$tpid/cwd")"
fi
}
if [ "$__anekos_enable_auto_logging" = 1 -a -z "$__anekos_scripted" ]
then
logall
fi
fi
# }}}
# AUTOLOAD {{{
fpath=($fpath ~/.zsh_func)
autoload -U ~/.zsh_func/*(:t)
autoload -Uz is-at-least
autoload -U compinit
compinit -u
autoload -U colors
colors
autoload -Uz add-zsh-hook
autoload history-search-end
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end
# http://d.hatena.ne.jp/sugyan/20100712/1278869962
autoload -U select-word-style
# select-word-style bash
# WORDCHARS='*?_-.,[]~=&;!#$%^(){}<>'
# zstyle ':zle:*' word-chars " _-./;@"
# zstyle ':zle:*' word-style unspecified
# zsh editor
autoload zed
autoload zargs
# }}}
# MODULES {{{
zmodload -i zsh/mathfunc
# }}}
# COMPLETION {{{
# zshの補完を強化するTips - Qiita [キータ] - http://qiita.com/PSP_T/items/ed2d36698a5cc314557d
# zshのzstyleでの補完時の挙動について - voidy21の日記 - http://voidy21.hatenablog.jp/entry/20090902/1251918174
# 補完関数の表示を強化する
zstyle ':completion:*' verbose yes
zstyle ':completion:*' completer _expand _complete _match _prefix _list _approximate # _history
zstyle ':completion:*:messages' format '%F{YELLOW}%d'$DEFAULT
zstyle ':completion:*:warnings' format '%F{RED}No matches for:''%F{YELLOW} %d'$DEFAULT
zstyle ':completion:*:descriptions' format '%F{YELLOW}completing %B%d%b'$DEFAULT
zstyle ':completion:*:options' description 'yes'
zstyle ':completion:*:descriptions' format '%F{yellow}Completing %B%d%b%f'$DEFAULT
# マッチ種別を別々に表示
zstyle ':completion:*' group-name ''
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z} m:{A-Z}={a-z}'
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*:processes' command 'ps x -o pid,s,args'
# 補完候補が複数ある時、一覧表示 (auto_list) せず、すぐに最初の候補を補完する
#setopt menu_complete
# 一覧表示された補完候補を C-p C-n などで選択可能にする
zstyle ':completion:*:default' menu select=1
# 補完リストを詰めて表示
setopt list_packed
# エイリアスを展開して補完
setopt complete_aliases
# カーソルの位置に補なうことで単語を完成させようとする。
setopt complete_in_word
# *.o とかは補完しない
zstyle ':completion:*:*files' ignored-patterns '*?.hi' '*?.o' '*?~' '*\#'
# }}}
# OPTION {{{
# based by http://devel.aquahill.net/zsh/zshoptions
# 複数の zsh を同時に使う時など history ファイルに上書きせず追加する
setopt append_history
# 指定したコマンド名がなく、ディレクトリ名と一致した場合 cd する
setopt auto_cd
# 補完候補が複数ある時に、一覧表示する
setopt auto_list
# 補完キー(Tab, Ctrl+I) を連打するだけで順に補完候補を自動で補完する
setopt auto_menu
# カッコの対応などを自動的に補完する
setopt auto_param_keys
# ディレクトリ名の補完で末尾の / を自動的に付加し、次の補完に備える
setopt auto_param_slash
# cd -[tab] でpushd
setopt autopushd
# {a-c} を a b c に展開する機能を使えるようにする
setopt brace_ccl
# コマンドのスペルチェックをする
setopt correct
# =command を command のパス名に展開する
setopt equals
# ファイル名で #, ~, ^ の 3 文字を正規表現っぽく使えるように
setopt extended_glob
# zsh の開始・終了時刻をヒストリファイルに書き込む
setopt extended_history
# 直前と同じコマンドラインはヒストリに追加しない
setopt hist_ignore_dups
# 履歴を重複して登録しないようにする
setopt hist_ignore_dups
# コマンドラインの先頭がスペースで始まる場合ヒストリに追加しない
setopt hist_ignore_space
# history (fc -l) コマンドをヒストリリストから取り除く。
setopt hist_no_store
# ヒストリを呼び出してから実行する間に一旦編集できる状態になる
setopt hist_verify
# Ctrl+D では終了しないようになる(exit, logout などを使う)
setopt ignore_eof
# コマンドラインでも # 以降をコメントと見なす
setopt interactive_comments
# auto_list の補完候補一覧で、ls -F のようにファイルの種別をマーク表示
setopt list_types
# 内部コマンド jobs の出力をデフォルトで jobs -l にする
setopt long_list_jobs
# コマンドラインの引数で --prefix=/usr などの = 以降でも補完できる
setopt magic_equal_subst
# ファイル名の展開でディレクトリにマッチした場合末尾に / を付加する
setopt mark_dirs
# 複数のリダイレクトやパイプなど、必要に応じて tee や cat の機能が使われる
setopt multios
# ファイル名の展開で、辞書順ではなく数値的にソートされるようになる
setopt numeric_glob_sort
# 8 ビット目を通すようになり、日本語のファイル名などを見れるようになる
setopt print_eightbit
# 色を使う(エスケープシーケンスを通す)
setopt prompt_subst
# ディレクトリスタックに同じディレクトリを追加しないようになる
setopt pushd_ignore_dups
# rm_star_silent の逆で、10 秒間反応しなくなり、頭を冷ます時間が与えられる
setopt rm_star_wait
# シェルのプロセスごとに履歴を共有
setopt share_history
# for, repeat, select, if, function などで簡略文法が使えるようになる
setopt short_loops
#コピペの時rpromptを非表示する
setopt transient_rprompt
# ビープ音を鳴らさないようにする
unsetopt beep
unsetopt listbeep
# Ctrl+S/Ctrl+Q によるフロー制御を使わないようにする
unsetopt flow_control
# シェルが終了しても裏ジョブに HUP シグナルを送らないようにする
unsetopt hup
# 文字列末尾に改行コードが無い場合でも表示する
unsetopt promptcr
# }}}
# keys {{{
# emacs 風のバインド
bindkey -e
# 履歴検索
bindkey "^P" history-beginning-search-backward-end
bindkey "^N" history-beginning-search-forward-end
# zaw
bindkey "^Xt" zaw-tmux
bindkey "^Xh" zaw-history
bindkey "^Xbb" zaw-bookmark
bindkey "^Xba" zaw-bookmark-add
# }}}
# 左プロンプト {{{
# ホストに寄って色を変える
# http://absolute-area.com/post/6664864690/zsh
function pcolor () {
for ((f = 0; f < 255; f++)); do
printf "\e[38;5;%dm %3d#\e[m" $f $f
if [[ $f%8 -eq 7 ]] then
printf "\n"
fi
done
echo
}
if [ -f ~/.hostname ]
then
local LOCAL_HOSTNAME=$(head -1 ~/.hostname | tr --delete '\n')
else
local LOCAL_HOSTNAME=$(hostname)
fi
local HOSTC=$'%{\e[38;5;'"$(printf "%d\n" 0x$(echo "$LOCAL_HOSTNAME"|md5sum|cut -c3-4))"'m%}'
local DEFAULTC=$'%{\e[m%}'
function _anekos_prompt_precmd () {
local ec="$?"
if [ "$ec" = "0" ]
then
_anekos_prompt_lrc=""
else
_anekos_prompt_lrc=" ∴$ec∴ "
fi
if [ -n "$MLTERM" ] || [ -n "$KONSOLE_PROFILE_NAME" ]
then
_anekos_prompt_clock=" $(char-clock)"
else
_anekos_prompt_clock=''
fi
}
precmd_functions=($precmd_functions _anekos_prompt_precmd)
PROMPT="%F{red}┏%F{yellow}%B\${_anekos_prompt_lrc}%b%f${HOSTC}[${LOCAL_HOSTNAME}:%~] %F{green}%T${DEFAULTC}\${_anekos_prompt_clock}
%F{red}┗%F{blue}▶%f "
#〽【】
# }}}
# 右プロンプト {{{
case "$HOST" in
ildjarn | napalmdeath | pc-*)
# zsh の vcs_info に独自の処理を追加して stash 数とか push していない件数とか何でも表示する - Qiita
# http://qiita.com/mollifier/items/8d5a627d773758dd8078
autoload -Uz vcs_info
RPROMPT=""
# 以下の3つのメッセージをエクスポートする
# $vcs_info_msg_0_ : 通常メッセージ用 (緑)
# $vcs_info_msg_1_ : 警告メッセージ用 (黄色)
# $vcs_info_msg_2_ : エラーメッセージ用 (赤)
zstyle ':vcs_info:*' max-exports 3
zstyle ':vcs_info:*' enable git svn hg bzr
# 標準のフォーマット(git 以外で使用)
# misc(%m) は通常は空文字列に置き換えられる
zstyle ':vcs_info:*' formats '(%s)-[%b]'
zstyle ':vcs_info:*' actionformats '(%s)-[%b]' '%m' '<!%a>'
zstyle ':vcs_info:(svn|bzr):*' branchformat '%b:r%r'
zstyle ':vcs_info:bzr:*' use-simple true
if is-at-least 4.3.10
then
# git 用のフォーマット
# git のときはステージしているかどうかを表示
zstyle ':vcs_info:git:*' formats '[%b]' '%c%u %m'
zstyle ':vcs_info:git:*' actionformats '[%b]' '%c%u %m' '<!%a>'
zstyle ':vcs_info:git:*' check-for-changes true
zstyle ':vcs_info:git:*' stagedstr "+"
zstyle ':vcs_info:git:*' unstagedstr "-"
fi
# hooks 設定
if is-at-least 4.3.11
then
# git のときはフック関数を設定する
# formats '(%s)-[%b]' '%c%u %m' , actionformats '(%s)-[%b]' '%c%u %m' '<!%a>'
# のメッセージを設定する直前のフック関数
# 今回の設定の場合はformat の時は2つ, actionformats の時は3つメッセージがあるので
# 各関数が最大3回呼び出される。
zstyle ':vcs_info:git+set-message:*' hooks \
git-hook-begin \
git-untracked \
git-push-status \
git-nomerge-branch \
git-stash-count
# フックの最初の関数
# git の作業コピーのあるディレクトリのみフック関数を呼び出すようにする
# (.git ディレクトリ内にいるときは呼び出さない)
# .git ディレクトリ内では git status --porcelain などがエラーになるため
function +vi-git-hook-begin() {
# 0以外を返すとそれ以降のフック関数は呼び出されない
[[ $(command git rev-parse --is-inside-work-tree 2> /dev/null) != 'true' ]] && return 1
return 0
}
# untracked フィアル表示
#
# untracked ファイル(バージョン管理されていないファイル)がある場合は
# unstaged (%u) に ? を表示
function +vi-git-untracked() {
# zstyle formats, actionformats の2番目のメッセージのみ対象にする
[[ "$1" != "1" ]] && return 0
if command git status --porcelain 2> /dev/null \
| awk '{print $1}' \
| command grep -F '??' > /dev/null 2>&1
then
# unstaged (%u) に追加
hook_com[unstaged]+='?'
fi
}
# push していないコミットの件数表示
#
# リモートリポジトリに push していないコミットの件数を
# pN という形式で misc (%m) に表示する
function +vi-git-push-status() {
# zstyle formats, actionformats の2番目のメッセージのみ対象にする
[[ "$1" != "1" ]] && return 0
# ブランチ名
local branch="${hook_com[branch]}"
# リモート名
local remote="$(command git remote | command grep -v backup)"
[ -z "$remote" ] && return 0
# push していないコミット数を取得する
local ahead
ahead="$(command git rev-list "$remote/$branch".."$branch" 2>/dev/null \
| wc -l \
| tr -d ' ')"
if [[ "$ahead" -gt 0 ]]
then
# misc (%m) に追加
hook_com[misc]+="p${ahead}"
fi
}
# マージしていない件数表示
#
# master/develop 以外のブランチにいる場合に、
# 現在のブランチ上でまだ master/develop にマージしていないコミットの件数を
# (mN) という形式で misc (%m) に表示
# 対象の優先度は、 develop > master
function +vi-git-nomerge-branch() {
# zstyle formats, actionformats の2番目のメッセージのみ対象にする
[[ "$1" != "1" ]] && return 0
local target='master'
git rev-parse develop >/dev/null 2>&1 && local target='develop'
# master ブランチの場合は何もしない
[[ "${hook_com[branch]}" == "$target" ]] && return 0
local nomerged
nomerged=$(command git rev-list "$target"..${hook_com[branch]} 2>/dev/null | wc -l | tr -d ' ')
# misc (%m) に追加
[[ "$nomerged" -gt 0 ]] && hook_com[misc]+="m${nomerged}"
}
# stash 件数表示
#
# stash している場合は :SN という形式で misc (%m) に表示
function +vi-git-stash-count() {
# zstyle formats, actionformats の2番目のメッセージのみ対象にする
[[ "$1" != "1" ]] && return 0
local stash
stash=$(command git stash list 2>/dev/null | wc -l | tr -d ' ')
if [[ "${stash}" -gt 0 ]]; then
# misc (%m) に追加
hook_com[misc]+=":S${stash}"
fi
}
fi
function _update_vcs_info_msg() {
local -a messages
local prompt
LANG=en_US.UTF-8 vcs_info
if [[ -z ${vcs_info_msg_0_} ]]; then
# vcs_info で何も取得していない場合はプロンプトを表示しない
prompt=""
else
# vcs_info で情報を取得した場合
# $vcs_info_msg_0_ , $vcs_info_msg_1_ , $vcs_info_msg_2_ を
# それぞれ緑、黄色、赤で表示する
[[ -n "$vcs_info_msg_1_" ]] && messages+=( "%B%F{yellow}${vcs_info_msg_1_}%f%b" )
[[ -n "$vcs_info_msg_2_" ]] && messages+=( "%B%F{red}${vcs_info_msg_2_}%f%b" )
[[ -n "$vcs_info_msg_0_" ]] && messages+=( "%F{green}${vcs_info_msg_0_}%f" )
# 間にスペースを入れて連結する
prompt="${(j: :)messages}"
fi
RPROMPT="$prompt"
}
add-zsh-hook precmd _update_vcs_info_msg
;;
esac
# }}}
# SET {{{
# 履歴
HISTFILE=~/.zsh_history
HISTSIZE=1000000
SAVEHIST=1000000 # 100万パワー
# }}}
# zsh 終了時の処理 {{{
function on_zsh_exit () {
[ -f ~/.zexit ] && source ~/.zexit
}
trap on_zsh_exit EXIT
# }}}
# 文字装飾 {{{
# ref: http://ascii-table.com/ansi-escape-sequences.php
TEXT_FG_Black=30
TEXT_FG_Red=31
TEXT_FG_Green=32
TEXT_FG_Yellow=33
TEXT_FG_Blue=34
TEXT_FG_Magenta=35
TEXT_FG_Cyan=36
TEXT_FG_White=37
TEXT_BG_Black=40
TEXT_BG_Red=41
TEXT_BG_Green=42
TEXT_BG_Yellow=43
TEXT_BG_Blue=44
TEXT_BG_Magenta=45
TEXT_BG_Cyan=46
TEXT_BG_White=47
TEXT_Clear=0
TEXT_Bold=1
TEXT_Italic=3
TEXT_Underscore=4
TEXT_Blink=5
TEXT_Reversed=7
TEXT_Concealed=8
function colorname2number {
local background=0
while getopts :b opt "$@"
do
case $opt in
b)
local background=1
;;
\?)
return 2
;;
esac
done
shift $((OPTIND-1))
case "$1" in
black)
local code=30
;;
red)
local code=31
;;
green)
local code=32
;;
brown)
local code=33
;;
blue)
local code=34
;;
magenta)
local code=35
;;
cyan)
local code=36
;;
white)
local code=37
;;
bblack)
local code=30
;;
bred)
local code=31
;;
bgreen)
local code=32
;;
bbrown)
local code=33
;;
bblue)
local code=34
;;
bmagenta)
local code=35
;;
bcyan)
local code=36
;;
bwhite)
local code=37
;;
*)
echo "Invalid color name: $1
Valid names: red, green, brown, blue, magenta, cyan, white
(background color: 'b<color>')" >&2
return 1
;;
esac
if [ $background = 1 ]
then
code=$((code + 10))
fi
echo "$code"
}
# }}}
# エイリアス {{{
# Fail safe
has-command trash-put && alias rm=trash-put
alias crontab='crontab -i'
# short
if has-command rifle
then
alias o=rifle
elif has-command exo-open
then
alias o=exo-open
fi
if has-command notify-send
then
alias ns='notify-send -u normal'
alias nsl='notify-send -u low'
alias nsc='notify-send -u critical'
fi
# override
alias ls='ls --color=auto'
has-command hub && alias git='hub'
# override with rlwrap
has-command rlwrap && has-command buildr && alias buildr='rlwrap buildr'
has-command rlwrap && has-command sbcl && alias sbcl='rlwrap sbcl --noinform'
# alias man=w3mman
alias grep="grep --color"
# with args
alias ll='ls -lah --time-style=long-iso'
alias lr='ls -ltrah --time-style=long-iso'
alias ,,=popd
alias ,.=pushd
alias sct='screen -t'
alias quote='sed "s/^\|$/\"/g"'
alias mv='mv -i'
alias tailff='tail --follow=name --retry'
alias bell='echo -e "\\a"'
# vim
alias v="gvim"
alias vimlein='vim -c "VimShellInteractive lein repl" -c "bdelete 1" -c "split"'
alias vil='find . -maxdepth 3 -type f | egrep -v "/(\\..*|classes)" | vim -c "setlocal readonly nomodified" - '
alias vinarise='vim -c Vinarise'
alias gvinarise='gvim -c Vinarise'
alias refe='noglob refe-color'
# Get My IP
alias myip='curl icanhazip.com'
# cpan - http://d.hatena.ne.jp/holidays-l/20070601/p1
alias cpan-uninstall='perl -MConfig -MExtUtils::Install -e '"'"'($FULLEXT=shift)=~s{-}{/}g;uninstall "$Config{sitearchexp}/auto/$FULLEXT/.packlist",1'"'"
# global
alias -g A='| awk'
alias -g G='| grep --line-buffered --color'
alias -g EG='| egrep --color'
alias -g GI='| grep --line-buffered -i'
alias -g H='| head'
alias -g L='| less -R'
alias -g M='| more'
alias -g T='| tail'
alias -g W='| wc'
alias -g WL='| wc -l'
alias -g S='| sed --unbuffered'
alias -g X='| xargs'
alias -g Q='| quote'
alias -g V='| vim -R -'
alias -g GV='| gvim -R -'
alias -g HTML='| w3m -T "text/html"'
alias -g HTMLD='| w3m -cols `tput cols` -dump -T "text/html"'
alias -g 2N='2> /dev/null'
alias -g 12N='&> /dev/null'
has-command osd_cat && alias -g OSDCAT='| cut -b-100 | osd_cat --pos=middle --align=center --font="-*-*-medium-*-*-*-20-*-*-*-*-*-*-*"'
has-command dzen2 && alias -g DZEN='| dzen2 -bg orange -fg black -xs 1 -e "onstart=uncollapse"'
# has-command python && alias -g JSON='| python -mjson.tool'
has-command python2 && alias -g JSON="| python2 -c 'import sys,json;print json.dumps(json.loads(sys.stdin.read()),indent=4,ensure_ascii=False)'"
has-command jq && alias -g JQ='| jq'
# H1 〜 H100、T1 〜 T100
function () {
local i=0
for i in {1..100}
do
alias -g H$i="| head -$i"
alias -g T$i="| tail -$i"
done
}
# iconv
alias -g SU="| iconv -f CP932 -t UTF-8 -c"
alias -g SUL="| iconv -f CP932 -t UTF-8 -c | less"
# Clipboard
if has-command pbcopy ; then
# Mac
alias -g C='| pbcopy'
elif has-command xsel ; then
# Linux
alias -g C='| xsel --input --clipboard'
elif has-command putclip ; then
# Cygwin
alias -g C='| putclip'
fi
alias eclear="echo -e '\026\033c'"
has-command fu || has-command fu.py && alias fu=fu.py
# extension
# alias -s vim="vi"
# alias -s txt="vi"
# alias -s htm="vi"
# alias -s html="vi"
if has-command longcat
then
function fitcat () {
local wait="$1"
[ -z "$1"] && wait=1
(echo '' ; tput clear; longcat $((`tput lines` - 20)); sleep $wait)
}
fi
# vim
alias p='panty summon'
# OS
case "$OSTYPE" in
linux*)
# clipboard
alias -g GC='xclip -o'
if has-command xsel && has-command tpipe
then
alias -g PC="| tpipe 'xsel --input --clipboard' | tpipe 'xsel --input --primary' | tpipe 'xsel --input --secondary'"
else
alias -g PC="| tee >(xsel --input --clipboard) | tee >(xsel --input --primary) | tee >(xsel --input --secondary)"
fi
;;
esac
# TMUX
[ -n "$TMUX" ] && alias copy=~/script/tmux/copy
has-command fuck && alias fuck='eval $(thefuck $(fc -ln -1))'
# workaround
alias gitk='LC_ALL=C gitk'
# }}}
# 外部コマンドを使うためのエイリアス {{{
[ -x /bin/time ] && alias time=/bin/time
# }}}
# Plugin {{{
for plugin_name in ~/.zsh_plugin/*; source $plugin_name
# }}}
# 履歴 history-all {{{
function history-all { history -E 1 } # 全履歴の一覧を出力する
# }}}
# マウントしながら cd {{{
function cdmount () {
mount "$@"
cd "$1"
}
# }}}
# zshrc スカウター {{{
function scouter() {
sed -e '/^\s*$/d' -e '/^\s*#/d' ${ZDOTDIR:-$HOME}/.zshrc | wc -l
}
# }}}
# パスをクリップボードへコピー {{{
function cpwd () {
echo -n `realpath "${1:-.}"` | xclip -i
}
# }}}
# mkdir + cd {{{
function mkcd () {
mkdir "$@"
cd "${@: - 1}"
}
# }}}
# コマンドの成否を報告 {{{
function zsay {
if [ "$HOST" = "ildjarn" ] && has-command say
then
say "$_anekos_longtimeago_name おわたで"
fi
}
function saycode {
if [ $? -ne 0 ];
then
zsay しっぱい
else
zsay せいこう
fi
}
# }}}
# 履歴に記録する条件 {{{
# http://d.hatena.ne.jp/mollifier/20090728/p1
zshaddhistory() {
local ok=$? # 上手くいかない
local line=${1%%$'\n'}
local cmd_path="${line%% *}"
local cmd=`basename "$cmd_path"`
local exists=0
if has-command "$cmd" || [[ $cmd_path =~ [~/] ]]
then
exists=1
fi
# 以下の条件をすべて満たすものだけをヒストリに追加する
[[ ${#line} -ge 4
&& ${cmd} != (exit|halt|reboot)
&& ${cmd} != (rm|rmdir)
&& ${cmd} != (man)
&& ${cmd} != (l[salr])
&& ${cmd} != (c|cd)
&& ${exists} -eq 1
]] # && echo record "$ok"
}
# }}}
# read -> copy {{{
function rcopy () {
local line
while read line
do
echo -n "$line" | xclip -i
done
}
# }}}
# TMUX の自動タイトル {{{
if [ -n "$TMUX" ]
then
function _anekos_tmux_window_title_preexec () {
local -a cmd
cmd=(${(z)2})