-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
44 lines (32 loc) · 968 Bytes
/
.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
# -------------------- Message ------------------
cat << EOS
=============================================
welcome to ...
##### #### ## #
## ## ## #
## ### ## #
### ### #####
## ### ## #
## ## ## #
##### #### ## #
=============================================
EOS
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# nodebrew
export PATH=$HOME/.nodebrew/current/bin:$PATH
# rbenv
export PATH=$HOME/.rbenv/bin:$PATH
eval "$(rbenv init - zsh)"
# cmdshelf
export PATH=$HOME/cmdshelf/.build/release:$PATH
# Flutter
export PATH=$HOME/Developer/flutter/bin:$PATH
export PATH="/usr/local/opt/llvm@6/bin:$PATH"
export PATH="/usr/local/sbin:$PATH"
export PATH=$PATH:/usr/local/bin
+# Android
export ANDROID_HOME="$HOME/Library/Android/sdk"
export PATH="$ANDROID_HOME/cmdline-tools/latest/bin:$PATH"
export PATH="$ANDROID_HOME/platform-tools:$PATH"