-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupos.sh
executable file
·56 lines (41 loc) · 1.12 KB
/
setupos.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
brew update
echo "Installing brew updates and defaults"
brew tap homebrew/dupes
brew install coreutils
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils
# Install Bash 4
brew install bash
echo "Installing packages I want"
# Utilties
brew install defaultbrowser
# General tools for mac
brew install --cask raycast
brew install --cask slack
brew install --cask google-chrome
osascript $DOTFILE_LOCATION/scripts/setdefaultbrowserauto.scpt chrome
# Coding CLI tools for being able to develop as I want
brew tap homebrew/cask-fonts
brew install --cask font-fira-code
brew install postgresql
brew install tfenv
brew install --cask google-cloud-sdk
brew install redis
brew install jq
# Hammerspoon setup
setuphammerspoon
# Docker setup
setupdocker
# Languages
# Python setup
setuppython
# Ruby setup
setupruby
brew install deno
brew install go
brew install rust
# Coding tools
## Node version manager
curl https://get.volta.sh | bash -s -- --skip-setup
brew install --cask github
brew install --cask postman