-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
281 lines (235 loc) · 8.28 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
#---------------------------------------------------------------------------
# General
#---------------------------------------------------------------------------
zmodload zsh/datetime
start_time=$(strftime '%s%.')
# 環境変数
export LANG=ja_JP.UTF-8
export PATH="/bin:/usr/bin:/usr/local/bin:/Users/toshihisa/.homebrew/bin:${PATH}"
# set PATH so it includes user's private bin if it exists
PATH="$HOME/.local/bin:$PATH"
# diff-highlight
export PATH="$PATH:/usr/local/share/git-core/contrib/diff-highlight"
# Node
export PATH="$HOME/.nodenv/bin:$PATH"
eval "$(nodenv init -)"
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
# Ruby
eval "$(rbenv init - zsh)"
# direnv
eval "$(direnv hook zsh)"
# Go
export GOPATH=$HOME/go
export PATH=/usr/local/go/bin:$GOPATH/bin:$PATH
# fzf
export FZF_DEFAULT_OPTS='--height 40% --reverse --color fg:-1,bg:-1,hl:230,fg+:3,bg+:233,hl+:229 --color info:150,prompt:110,spinner:150,pointer:167,marker:174'
# Hyper
# Override auto-title when static titles are desired ($ title My new title)
title() { export TITLE_OVERRIDDEN=1; echo -en "\e]0;$*\a"}
# Turn off static titles ($ autotitle)
autotitle() { export TITLE_OVERRIDDEN=0 }; autotitle
# Condition checking if title is overridden
overridden() { [[ $TITLE_OVERRIDDEN == 1 ]]; }
# Echo asterisk if git state is dirty
gitDirty() { [[ $(git status 2> /dev/null | grep -o '\w\+' | tail -n1) != ("clean"|"") ]] && echo "*" }
# Show cwd when shell prompts for input.
precmd() {
if overridden; then return; fi
cwd=${$(pwd)##*/} # Extract current working dir only
print -Pn "\e]0;$cwd$(gitDirty)\a" # Replace with $pwd to show full path
}
# Prepend command (w/o arguments) to cwd while waiting for command to complete.
preexec() {
if overridden; then return; fi
printf "\033]0;%s\a" "${1%% *} | $cwd$(gitDirty)" # Omit construct from $1 to show args
}
# ビープ音を鳴らさないようにする
setopt no_beep
# 色を使用出来るようにする
autoload -Uz colors
colors
# オプション
# 日本語ファイル名を表示可能にする
setopt print_eight_bit
# '#' 以降をコメントとして扱う
setopt interactive_comments
# 標準エディタを設定する
export EDITOR=vim
# ls時のカラー表記
export LSCOLORS=gxfxcxdxbxegedabagacad
# ファイルリスト補完時、ディレクトリをシアン
zstyle ':completion:*' list-colors 'di=36;49'
# binding
bindkey -v
# alias
source $HOME/.aliases
#---------------------------------------------------------------------------
# History
#---------------------------------------------------------------------------
HISTFILE=$HOME/.zsh_history
HISTSIZE=1000000
SAVEHIST=1000000
## 同時に起動したzshの間でヒストリを共有する
setopt share_history
## 同じコマンドをヒストリに残さない
setopt hist_ignore_all_dups
#---------------------------------------------------------------------------
# VCS
#---------------------------------------------------------------------------
# gitの情報を取得
autoload -Uz vcs_info
setopt PROMPT_SUBST
zstyle ':vcs_info:git:*' check-for-changes true #formats 設定項目で %c,%u が使用可
zstyle ':vcs_info:git:*' stagedstr "%F{green}!" #commit されていないファイルがある
zstyle ':vcs_info:git:*' unstagedstr "%F{magenta}+" #add されていないファイルがある
zstyle ':vcs_info:*' formats "%F{cyan}%c%u(%b)%f" #通常
zstyle ':vcs_info:*' actionformats '[%b|%a]' #rebase 途中,merge コンフリクト等 formats 外の表示
precmd () { vcs_info }
#---------------------------------------------------------------------------
# PROMPT
#---------------------------------------------------------------------------
# プロンプト左
PROMPT="%{${fg[green]}%}[%n]%{${reset_color}%} %~
%{$fg[red]%} ➜ %{$reset_color%}"
# プロンプト右
RPROMPT='${vcs_info_msg_0_} %{${fg[red]}%}%}%b%{${reset_color}%}'
#---------------------------------------------------------------------------
# Complement
#---------------------------------------------------------------------------
# zsh-completions
fpath=(/path/to/homebrew/share/zsh-completions $fpath)
# 補完機能を有効にする
autoload -Uz compinit
compinit
## 補完で小文字でも大文字にマッチさせる
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
## 補完時にヒストリを自動的に展開する
setopt hist_expand
## 補完候補一覧でファイルの種別を識別マーク表示
setopt list_types
## 候補を表示する
setopt auto_list
## 補完キー(Tab, Ctrl+I) を連打するだけで順に補完候補を自動で補完
setopt auto_menu
## ディレクトリ名の補完で末尾の / を自動的に付加し、次の補完に備える
setopt auto_param_slash
## npmのコマンド中ではcorrectしない
alias npm='nocorrect npm'
#---------------------------------------------------------------------------
# cd
#---------------------------------------------------------------------------
## cdのタイミングで自動的にpushd
setopt auto_pushd
setopt pushd_ignore_dups
## ディレクトリ名だけでcdする
setopt auto_cd
# proxy
#---------------------------------------------------------------------------
# Function
#---------------------------------------------------------------------------
# コマンド履歴
function fzf-select-history() {
# historyを番号なし、逆順、最初から表示。
# 順番を保持して重複を削除。
# カーソルの左側の文字列をクエリにしてfzfを起動
# \nを改行に変換
BUFFER="$(history -nr 1 | awk '!a[$0]++' | fzf --query "$LBUFFER" | sed 's/\\n/\n/')"
CURSOR=$#BUFFER # カーソルを文末に移動
zle -R -c # refresh
}
zle -N fzf-select-history
bindkey '^R' fzf-select-history
# cd後、自動的にls
function chpwd() { ls }
# ghqのリポジトリからVSCodeを起動
function get_target_repo() {
if [ $# -eq 1 ]; then
echo $1
else
echo $(repos)
fi
}
function coderepo() {
open -a Visual\ Studio\ Code $(get_target_repo $1)
}
# git repoのルートに移動
cdgit () {
git rev-parse --is-inside-work-tree > /dev/null
if [ $? = 0 ];
then
cd `git rev-parse --show-toplevel`
fi
}
# git branch checkout
gch() {
local branches branch
branches=$(git branch -vv) &&
branch=$(echo "$branches" | fzf +m) &&
git checkout $(echo "$branch" | awk '{print $1}' | sed "s/.* //")
}
# Set Spaceship ZSH as a prompt
autoload -U promptinit; promptinit
prompt spaceship
###-begin-npm-completion-###
#
# npm command completion script
#
# Installation: npm completion >> ~/.bashrc (or ~/.zshrc)
# Or, maybe: npm completion > /usr/local/etc/bash_completion.d/npm
#
if type complete &>/dev/null; then
_npm_completion () {
local words cword
if type _get_comp_words_by_ref &>/dev/null; then
_get_comp_words_by_ref -n = -n @ -n : -w words -i cword
else
cword="$COMP_CWORD"
words=("${COMP_WORDS[@]}")
fi
local si="$IFS"
IFS=$'\n' COMPREPLY=($(COMP_CWORD="$cword" \
COMP_LINE="$COMP_LINE" \
COMP_POINT="$COMP_POINT" \
npm completion -- "${words[@]}" \
2>/dev/null)) || return $?
IFS="$si"
if type __ltrim_colon_completions &>/dev/null; then
__ltrim_colon_completions "${words[cword]}"
fi
}
complete -o default -F _npm_completion npm
elif type compdef &>/dev/null; then
_npm_completion() {
local si=$IFS
compadd -- $(COMP_CWORD=$((CURRENT-1)) \
COMP_LINE=$BUFFER \
COMP_POINT=0 \
npm completion -- "${words[@]}" \
2>/dev/null)
IFS=$si
}
compdef _npm_completion npm
elif type compctl &>/dev/null; then
_npm_completion () {
local cword line point words si
read -Ac words
read -cn cword
let cword-=1
read -l line
read -ln point
si="$IFS"
IFS=$'\n' reply=($(COMP_CWORD="$cword" \
COMP_LINE="$line" \
COMP_POINT="$point" \
npm completion -- "${words[@]}" \
2>/dev/null)) || return $?
IFS="$si"
}
compctl -K _npm_completion npm
fi
###-end-npm-completion-###
end_time=$(strftime '%s%.')
echo $((end_time - start_time))
export RBENV_ROOT="$HOME/.rbenv"
export PATH="$RBENV_ROOT/bin:$PATH"