-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.sh
125 lines (91 loc) · 2.66 KB
/
setup.sh
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
function sourceZshrcFile() {
source ~/.zshrc
}
# Install Command Line Developer Tools for Xcode
# Homebrew depends on it
xcode-select --install
echo "✅ Command Line Developer Tools for Xcode"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo "✅ Homebrew installed"
# Set Tsinghua mirror for Homebrew
cat > .zshrc << EOF
export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles
EOF
sourceZshrcFile
brew install git
echo "✅ Git installed"
brew install rust
echo "✅ Rust installed"
brew install --cask jetbrains-toolbox
echo "✅ Jetbrains Toolbox installed"
brew install --cask android-studio
echo "✅ Android Studio installed"
brew install cloc
echo "✅ cloc installed"
brew install gh
echo "✅ GitHub cli installed"
brew install java11
echo "✅ Java 11 installed"
brew install --cask google-chrome
echo "✅ Chrome installed"
brew install --cask firefox
echo "✅ Firefox installed"
brew install --cask visual-studio-code
echo "✅ VSCode installed"
brew install --cask notion
echo "✅ Notion installed"
brew install --cask discord
echo "✅ Discord installed"
brew install --cask sublime-text
echo "✅ Sublime Text installed"
brew install --cask macdown
echo "✅ MacDown installed"
brew install --cask iina
echo "✅ IINA installed"
brew install --cask sourcetree
echo "✅ Sourcetree installed"
brew install --cask fork
echo "✅ Fork installed"
brew install --cask clashx
echo "✅ ClashX installed"
brew install ffmpeg
echo "✅ FFmpeg installed"
brew install yt-dlp/taps/yt-dlp
echo "✅ yt-dlp installed"
brew tap PotatoLabs/homebrew-git-redate
brew install git-redate
echo "✅ git-redate installed"
brew install docker
echo "✅ docker installed"
# Customize Git
cat > .zshrc << EOF
# To include the branch name in the prompt on the right side
autoload -Uz compinit && compinit
autoload -Uz vcs_info
precmd_vcs_info() { vcs_info }
precmd_functions+=( precmd_vcs_info )
setopt prompt_subst
RPROMPT=\$vcs_info_msg_0_
# PROMPT=\$vcs_info_msg_0_'%# '
zstyle ':vcs_info:git:*' formats '%b'
# To fix "too many open files" error
ulimit -n 1024
EOF
echo "✅ Git customized"
# Enable vi syntax colors and highlighting
cat > .vimrc << EOF
syntax on
colorscheme desert
EOF
git config --global user.name "tonnyl"
git config --global user.email "[email protected]"
echo "✅ Configure Git succeeded"
# Set environment arguments
cat > .zshrc << EOF
export PATH="$HOME/.cargo/bin:$PATH"
export ANDROID_HOME=/Users/$USER/Library/Android/sdk
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
export PATH="/usr/local/opt/openjdk@11/bin:$PATH"
EOF
# Reload zsh config
sourceZshrcFile