-
Notifications
You must be signed in to change notification settings - Fork 0
/
mac_setup.sh
executable file
·321 lines (256 loc) · 9.88 KB
/
mac_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
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#!/bin/bash
# This script is meant to be idempotent and should be safe to run multiple times.
#
# To install Deseret Book tooling, set the DESERET_BOOK environment variable.
# e.g. DESERET_BOOK=true ./mac_setup.sh
function print_header() {
echo "**************************************************************************"
echo "**" $1
echo "**************************************************************************"
}
function is_deseret_book() {
if [[ -n "$DESERET_BOOK" ]]; then
return 0
else
return 1
fi
}
# Link Files
print_header "Symlinking Files"
mkdir ~/.config
mkdir ~/.ssh/
ln -sf ~/development/dotfiles/ssh/config ~/.ssh/
if ! is_deseret_book; then ln -sf ~/development/dotfiles/ssh/known_hosts ~/.ssh/; fi
ln -sf ~/development/dotfiles/tmuxinator ~/.config
ln -sf ~/development/dotfiles/.agignore ~
ln -sf ~/development/dotfiles/.asdfrc ~
ln -sf ~/development/dotfiles/.ctags ~
ln -sf ~/development/dotfiles/.default-gems ~
ln -sf ~/development/dotfiles/.default-npm-packages ~
ln -sf ~/development/dotfiles/.fzf.zsh ~
if is_deseret_book; then
ln -sf ~/development/dotfiles/.gitconfig_deseret_book ~/.gitconfig
else
ln -sf ~/development/dotfiles/.gitconfig ~
fi
ln -sf ~/development/dotfiles/.gitignore_global ~
ln -sf ~/development/dotfiles/.irbrc ~
mkdir ~/Obsidian
ln -sf ~/development/dotfiles/.obsidian.vimrc ~/Obsidian
ln -sf ~/development/dotfiles/.pryrc ~
ln -sf ~/development/dotfiles/.psqlrc ~
ln -sf ~/development/dotfiles/.rspec ~
ln -sf ~/development/dotfiles/.rubocop.yml ~
ln -sf ~/development/dotfiles/.tmux.conf ~
ln -sf ~/development/dotfiles/.tool-versions ~
mkdir /Users/cbeach/Library/Application\ Support/Windsurf/User
ln -sf ~/development/dotfiles/windsurf_settings.json /Users/cbeach/Library/Application\ Support/Windsurf/User/settings.json
ln -sf ~/development/dotfiles/.zshrc ~
ln -sf ~/development/dotfiles/git-commit-template.txt ~
ln -sf ~/development/dotfiles/zellij ~/.config
# gpg-agent.conf is linked later on this script because gnupg sets up the ~/.gnupg directory
# in a certain way, so I need to link this file after gnupg runs once.
# Brew
print_header "Installing Brew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
source ~/.zshrc
eval "$(/opt/homebrew/bin/brew shellenv)"
## Packages
print_header "Installing Brew Packages"
brew install ack
brew install bat
brew install cmake
brew install diff-so-fancy
brew install eza
brew install fd
brew install fzf
$(brew --prefix)/opt/fzf/install --key-bindings --completion --no-update-rc
brew install git
brew install gnu-sed
brew install gnupg
brew install luarocks
brew install neovim
brew install pinentry-mac
brew install pure
brew install ripgrep
brew install rust
brew install spacer
brew install the_silver_searcher
brew install tldr
brew install tmux
brew install tmuxinator
brew install trash
brew install wget
brew install yarn
brew install zsh
## Services
print_header "Installing Brew Services"
brew install redis
brew services start redis
## Fonts
print_header "Installing Brew Fonts"
brew install --cask font-hack-nerd-font
## Applications
print_header "Installing Applications via Brew Cask"
brew install --cask amazon-q
brew install --cask arc
if ! is_deseret_book; then brew install --cask balenaetcher; fi
brew install --cask bettertouchtool
brew install --cask bitwarden
brew install --cask chatgpt
brew install --cask dash
brew install --cask firefox@developer-edition
if ! is_deseret_book; then brew install --cask gimp; fi
brew install --cask gitkraken
brew install --cask google-chrome
brew install --cask iterm2
if is_deseret_book; then brew install --cask linear-linear; fi
brew install --cask maccy
brew install --cask numi
brew install --cask obsidian
brew install --cask postgres-unofficial
brew install --cask postman
if ! is_deseret_book; then brew install --cask protonvpn; fi
brew install --cask slack
brew install --cask tableplus
brew install --cask visual-studio-code
brew install zellij
if ! is_deseret_book; then brew install --cask whatsapp; fi
# Cargo
print_header "Installing Cargo Packages"
cargo install faketty
# asdf
print_header "Installing asdf"
rm -rf ~/.asdf
brew install asdf
source ~/.zshrc
## Dependencies
print_header "Installing Dependencies"
xcode-select --install
brew install coreutils curl git
## Ruby
print_header "Installing Ruby"
brew install openssl@3 readline libyaml gmp
asdf plugin-add ruby https://github.com/asdf-vm/asdf-ruby.git
## NodeJS
print_header "Installing NodeJS"
asdf plugin-add nodejs https://github.com/asdf-vm/asdf-nodejs.git
## Python
print_header "Installing Python"
asdf plugin-add python
## Install Global Versions
print_header "Installing All Global Versions of Languages"
asdf install
# Zsh
## Oh My Zsh
print_header "Installing Oh My Zsh"
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" --unattended
## zsh-syntax-highlighting
print_header "Installing zsh-syntax-highlighting"
brew install zsh-syntax-highlighting
## zsh-completions
print_header "Installing zsh-completions"
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions
# Neovim
ln -sf ~/development/dotfiles/astronvim ~/.config/nvim
nvim --headless -c 'quitall'
pip install pynvim
# Other Tools
## tat
print_header "Installing tat"
sudo mkdir /usr/local/bin
sudo curl https://raw.githubusercontent.com/thoughtbot/dotfiles/master/bin/tat -o /usr/local/bin/tat && sudo chmod +x /usr/local/bin/tat
## Tmux Plugin Manager
print_header "Installing Tmux Plugin Manager"
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
## xcode-select
print_header "Installing Xcode Command Line Tools"
xcode-select --install
## AWS CLI
if is_deseret_book; then
print_header "Installing AWS CLI"
pip install aws-shell
fi
# Other Development Setup
## SSH
print_header "Generating an SSH key"
if is_deseret_book; then
ssh-keygen -t ed25519 -C "[email protected]"
else
ssh-keygen -t ed25519 -C "[email protected]"
fi
eval "$(ssh-agent -s)"
ssh-add --apple-use-keychain ~/.ssh/id_ed25519
## gnupg
gpg --list-keys
ln -sf ~/development/dotfiles/gpg-agent.conf ~/.gnupg/
# Power Schedule
if is_deseret_book; then
# Set the computer to restart 4:30 PM. This gives me a fresh environment each day, and minimizes the
# processes running outside of work hours, but doesn't result in the battery being charged to full.
sudo pmset repeat restart MTWRF 07:45:00
fi
# MacOS Settings
## Example settings: https://github.com/mathiasbynens/dotfiles/blob/master/.macos
## More examples: https://github.com/pawelgrzybek/dotfiles/blob/master/setup-macos.sh
print_header "Updating MacOS Setting"
## Expand save panel by default.
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
## Disable the “Are you sure you want to open this application?” dialog.
defaults write com.apple.LaunchServices LSQuarantine -bool false
## Avoid creating .DS_Store files on network or USB volumes.
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
## Disable the warning before emptying the Trash.
defaults write com.apple.finder WarnOnEmptyTrash -bool false
## Don't show warning before removing from iCloud Drive
defaults write com.apple.finder FXEnableRemoveFromICloudDriveWarning -bool false
## Finder: show all filename extensions
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
## Don't show warning before changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
## Show hidden files in finder.
defaults write com.apple.finder AppleShowAllFiles -string YES
## Keep folders on top in windows when sorting by name
defaults write com.apple.finder _FXSortFoldersFirst -bool true
## Set default view to list. (Finder > View > As List)
defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv"
## Show the path bar in finder. (Finder > View > Show Path Bar)
defaults write com.apple.finder ShowPathbar -bool true
## Always show scrollbars
defaults write NSGlobalDomain AppleShowScrollBars -string "Always"
## Possible values: `WhenScrolling`, `Automatic` and `Always`
## Click in the scrollbar to: Jump to the spot that's clicked
defaults write -globalDomain AppleScrollerPagingBehavior -bool true
## Change minimize/maximize window effect
defaults write com.apple.dock mineffect -string "scale"
## Don't show indicator lights for open applications in the Dock
defaults write com.apple.dock show-process-indicators -bool false
## Set dock size. (System Preferences > Dock > Size)
defaults write com.apple.dock tilesize -int 24
## Don’t show recent applications in Dock
defaults write com.apple.dock show-recents -bool false
## Don’t automatically rearrange Spaces based on most recent use
defaults write com.apple.dock mru-spaces -bool false
## Disable Dashboard
defaults write com.apple.dashboard mcx-disabled -bool true
## Don’t show Dashboard as a Space
defaults write com.apple.dock dashboard-in-overlay -bool true
## Hide Input Menu in menu bar
defaults write "com.apple.controlcenter" "NSStatusItem Visible InputMenu" -bool false
## Key repeat speed. (System Preferences > Keyboard. This is as fast as it will go.)
defaults write NSGlobalDomain KeyRepeat -int 2
## Delay until key repeat. (System Preferences > Keyboard. This is as fast as it will go.)
defaults write NSGlobalDomain InitialKeyRepeat -int 15
## Enable key repeat in VSCode and Windsurf
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false
defaults write com.exafunction.windsurf ApplePressAndHoldEnabled -bool false
## Kill Dock and Finder
for app in "Dock" "Finder"; do
killall "${app}" > /dev/null 2>&1
done
# Final Steps
print_header "Final Steps"
echo "Perform manual setup steps in mac_setup_manual_steps.md"
echo "Restart your computer. Some changes won't take affect until you do."