-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
167 lines (133 loc) · 5.01 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
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="candy"
plugins=(git zsh-syntax-highlighting zsh-completions)
# プロンプト表示設定
autoload -Uz vcs_info
zstyle ':vcs_info:*' formats '[%b]'
zstyle ':vcs_info:*' actionformats '[%b|%a]'
precmd () {
# 1行あける
print
# カレントディレクトリ
local left=' %{\e[38;5;2m%}(%~)%{\e[m%}'
# バージョン管理されてた場合、ブランチ名
vcs_info
local right="%{\e[38;5;32m%}${vcs_info_msg_0_}%{\e[m%}"
# スペースの長さを計算
# テキストを装飾する場合、エスケープシーケンスをカウントしないようにします
local invisible='%([BSUbfksu]|([FK]|){*})'
local leftwidth=${#${(S%%)left//$~invisible/}}
local rightwidth=${#${(S%%)right//$~invisible/}}
local padwidth=$(($COLUMNS - ($leftwidth + $rightwidth) % $COLUMNS))
print -P $left${(r:$padwidth:: :)}$right
}
# ユーザ名@ホスト名
PROMPT='%n@%m $ '
# 現在時刻
RPROMPT=$'%D, %*'
TMOUT=1
TRAPALRM() {
zle reset-prompt
}
# zsh-completions の設定。コマンド補完機能
autoload -U compinit && compinit -u
# Alias
alias relogin='exec $SHELL -l'
alias d='docker'
alias dc='docker-compose'
alias g='git'
alias gs='git status'
alias gb='git branch'
alias gc='git checkout'
alias gct='git commit'
alias ga='git add'
alias gd='git diff'
alias gl='git log'
alias gcma='git checkout master'
alias gmod='git merge origin/develop'
alias gmom='git merge origin/master'
alias gcm='git commit -m'
alias gpom='git push origin master'
alias gst='git stash'
# 色を使用出来るようにする
autoload -Uz colors
colors
# 日本語ファイル名を表示可能にする
setopt print_eight_bit
# cd なしでもディレクトリ移動
setopt auto_cd
# ビープ音の停止
setopt no_beep
# ビープ音の停止(補完時)
setopt nolistbeep
# cd [TAB] で以前移動したディレクトリを表示
setopt auto_pushd
# ヒストリ (履歴) を保存、数を増やす
HISTFILE=~/.zsh_history
HISTSIZE=100000
SAVEHIST=100000
# 同時に起動した zsh の間でヒストリを共有する
setopt share_history
# 直前と同じコマンドの場合はヒストリに追加しない
setopt hist_ignore_dups
# 同じコマンドをヒストリに残さない
setopt hist_ignore_all_dups
# スペースから始まるコマンド行はヒストリに残さない
setopt hist_ignore_space
# ヒストリに保存するときに余分なスペースを削除する
setopt hist_reduce_blanks
# キーバインディングを emacs 風にする
bindkey -d
bindkey -e
# 補完で小文字でも大文字にマッチさせる
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
# [TAB] でパス名の補完候補を表示したあと、
# 続けて [TAB] を押すと候補からパス名を選択できるようになる
# 候補を選ぶには [TAB] か Ctrl-N,B,F,P
zstyle ':completion:*:default' menu select=1
# コマンドのスペルを訂正する
setopt correct
# cd した先のディレクトリをディレクトリスタックに追加する
# cd [TAB] でディレクトリのヒストリが表示されるので、選択して移動できる
# ※ ディレクトリスタック: 今までに行ったディレクトリのヒストリのこと
setopt auto_pushd
# pushd したとき、ディレクトリがすでにスタックに含まれていればスタックに追加しない
setopt pushd_ignore_dups
# 拡張 glob を有効にする
# 拡張 glob を有効にすると # ~ ^ もパターンとして扱われる
# glob: パス名にマッチするワイルドカードパターンのこと
# ※ たとえば mv hoge.* ~/dir というコマンドにおける * のこと
setopt extended_glob
# 単語の一部として扱われる文字のセットを指定する
# ここではデフォルトのセットから / を抜いたものにしている
# ※ たとえば Ctrl-W でカーソル前の1単語を削除したとき / までで削除が止まる
WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
# zsh: no matches found ~対策
setopt nonomatch
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/taiki.shiino/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/taiki.shiino/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/taiki.shiino/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/taiki.shiino/google-cloud-sdk/completion.zsh.inc'; fi
# Git
function gitmain() {
git config --global user.name "taikishiino"
git config --global user.email "[email protected]"
git config --list
}
function gitcsc() {
git config --global user.name "taikishiino-csc"
git config --global user.email "[email protected]"
git config --list
}
# Go
export GOPATH=$HOME/go
PATH=$PATH:$GOPATH/bin
# gatsby
export DYLD_LIBRARY_PATH=/usr/lib/:$DYLD_LIBRARY_PATH
# Flutter
export PATH=$PATH:/Users/furusin/Library/Android/sdk/platform-tools
export PATH="$PATH:$HOME/.pub-cache/bin"
export PATH="$PATH:$HOME/fvm/default/bin"
export PATH="$PATH:$HOME/flutter/bin"
# MySQL
export PATH="/usr/local/opt/[email protected]/bin:$PATH"