-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·36 lines (29 loc) · 754 Bytes
/
setup.sh
File metadata and controls
executable file
·36 lines (29 loc) · 754 Bytes
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
#!/bin/sh
# Install brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install macOS applications
brew cask install dropbox
brew cask install gitkraken
brew cask install google-chrome
brew cask install iterm2
brew cask install macvim
brew cask install postico
brew cask install sequel-pro
brew cask install spectacle
# Install rbenv and some ~ruby versions
brew install rbenv
rbenv init
rbenv install 2.3.1
rbenv install 2.5.3
# Install mysql (mariadb)
brew install mariadb
brew services start mariadb
# Install postgresql
brew install postgresql
brew services start postgresql
# Install redis
brew install redis
brew services start redis
# Install packages
brew install ag
brew install tree