-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.zshrc
172 lines (143 loc) · 3.98 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
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <[email protected]>
#
fpath=(
$HOME/git/dotfiles/.zsh/prezto(N-/)
$fpath)
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# Customize to your needs...
# change shortcut for autosuggestion on prezto
bindkey '^e' autosuggest-accept
# disable some bindings
# expand-cmd-path
bindkey -r '^[e'
bindkey -r '^[E'
PATH=${PATH_IN_ZSHENV:-$PATH}
source $HOME/git/dotfiles/.zsh/basic.zshrc
source $HOME/git/dotfiles/.zsh/my-fzf.zsh
source $HOME/git/dotfiles/.zsh/export-alias.zsh
source $HOME/git/dotfiles/.zsh/git-foresta.zsh
source $HOME/git/dotfiles/.zsh/iterm2.zsh
source $HOME/git/dotfiles/.zsh/pretty-print-array.zsh
# for Test::Pretty
export TEST_PRETTY_COLOR_NAME=BRIGHT_GREEN
# terminal-notifier
source $HOME/git/dotfiles/.zsh/zsh-background-notify/bgnotify.plugin.zsh
# z
if (( $+commands[brew] )); then
. $(brew --prefix)/etc/profile.d/z.sh
elif [[ -f /etc/profile.d/z.sh ]]; then
. /etc/profile.d/z.sh
elif (( $+commands[ghq] )); then
z=$(ghq list --full-path rupa/z)
if [[ -f $z/z.sh ]]; then
. $z/z.sh
fi
fi
typeset -xTU LD_LIBRARY_PATH ld_library_path
ld_library_path+=($HOME/usr/lib(N-/))
# grc
# needed for prezto `git` module
if (( $+commands[grc] )); then
unalias grc
fi
if (( $+commands[brew] )) && [[ -f $(brew --prefix)/etc/grc.bashrc ]]; then
. $(brew --prefix)/etc/grc.bashrc
elif [[ -f /etc/profile.d/grc.bashrc ]]; then
. /etc/profile.d/grc.bashrc
manpath=(/usr/local/share/man(N-/) $manpath)
elif [[ -f $HOME/usr/etc/profile.d/grc.bashrc ]]; then
. $HOME/usr/etc/profile.d/grc.bashrc
manpath=($HOME/usr/share/man(N-/) $manpath)
fi
# custom mysql
mysql_bin=/usr/local/opt/mysql/bin
if (( $+commands[mysql] )); then
path=($path $mysql_bin(N-/))
else
path=($mysql_bin(N-/) $path)
fi
# github access token
local homebrew_github_api_token=$HOME/.homebrew_github_api_token
if [[ -f $homebrew_github_api_token ]]; then
. $homebrew_github_api_token
fi
# PHP composer
path=($HOME/.composer/vendor/bin(N-/) $path)
# fssh
if [[ -n $TMUX ]]; then
$HOME/git/dotfiles/bin/set_env_for_fssh.rb
fi
# local settings
zshrc_local=$HOME/.zshrc.local
if [[ -f $zshrc_local ]]; then
. $zshrc_local
fi
# for vim solarized
typeset -xT TERM_PROGRAM term_program
term_program=${term_program:-iTerm.app}
# for GnuPG
# http://unix.stackexchange.com/questions/257061/gentoo-linux-gpg-encrypts-properly-a-file-passed-through-parameter-but-throws-i
typeset -xT GPG_TTY gpg_tty
gpg_tty=$(tty)
# for direnv
if (( $+commands[direnv] )); then
eval "$(direnv hook zsh)"
fi
# manage $SSH_AUTH_SOCK
if (( $+commands[gosshauth] )); then
eval "$(gosshauth hook zsh)"
fi
# for Google Cloud SDK
typeset -xT GCSDK_PATH gcsdk_path
typeset -xT GAE_ROOT gae_root
gcsdk_path=/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk
if [[ -d $gcsdk_path ]]; then
gae_root=$gcsdk_path/platform/google_appengine
path=(
$gae_root(N-/)
$gcsdk_path/bin(N-/)
$path)
source $gcsdk_path/completion.zsh.inc
fi
# for kubectl
# NOTE: completion for kubectl is too slow to initialize.
#if (( $+commands[kubectl] )); then
# source <(kubectl completion zsh)
#fi
# for grep
export GREP_COLOR='3;4;93' # BSD.
export GREP_COLORS="mt=$GREP_COLOR" # GNU.
# for 3llo - the client for Trello
if [[ -f $HOME/.3llo ]]; then
source $HOME/.3llo
fi
# if in NeoVim, set chpwd function
neovim-pwd() {
(( $+commands[neovim_pwd.py] )) && neovim_pwd.py -v
}
if [[ -n $NVIM_LISTEN_ADDRESS ]]; then
neovim-pwd
chpwd_functions+=( neovim-pwd )
fi
# iTerm2 shell integration
if [[ -f ~/.iterm2_shell_integration.zsh ]]; then
source ~/.iterm2_shell_integration.zsh
fi
if type diff-highlight > /dev/null; then
else
path=(
/usr/local/share/git-core/contrib/diff-highlight(N-/)
$HOME/git/github.com/git/git/contrib/diff-highlight(N-/)
$path)
fi
# http://qiita.com/scalper/items/86da115e6c76a692d687
if which zprof > /dev/null 2>&1; then
zprof
fi