-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc.macos
33 lines (23 loc) · 1.01 KB
/
.zshrc.macos
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
export PATH=$PATH:/Applications/p4merge.app/Contents/MacOS
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh
export LSCOLORS="gxfxcxdxbxegedabagacad"
export LS_COLORS='di=0;36:ln=35:so=32:pi=33:ex=31:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:'
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/duythinht/workspace/system/google-cloud-sdk/path.zsh.inc' ]; then source '/Users/duythinht/workspace/system/google-cloud-sdk/path.zsh.inc'; fi
[[ -s /usr/local/bin/aws_zsh_completer.sh ]] && source /usr/local/bin/aws_zsh_completer.sh
# export MY_IP=$(curl https://v4.ifconfig.co/)
export GOPATH=$HOME/.go
export PATH=$PATH:/$GOPATH/bin
export GPG_TTY=$(tty)
export WORKSPACE=$HOME/workspace
export CLICOLOR=1
if [ -x "$(command -v kubectl)" ]; then
source <(kubectl completion zsh)
source ~/.zshrc.kubectl
fi
if [ -x "$(command -v helm)" ]; then
source <(helm completion zsh)
fi
if [ -x "$(command -v direnv)" ]; then
eval "$(direnv hook zsh)"
fi