forked from mattiasgeniar/mac-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·53 lines (40 loc) · 1.14 KB
/
install.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
#!/bin/sh
source conf.d/install_functions
# sudo keepalive
startsudo() {
sudo -v
( while true; do sudo -v; sleep 60; done; ) &
SUDO_PID="$!"
trap stopsudo SIGINT SIGTERM
}
stopsudo() {
kill "$SUDO_PID"
trap - SIGINT SIGTERM
sudo -k
}
echo "Setting up your Mac..."
startsudo
# Check for Homebrew and install if we don't have it
if test ! $(which brew); then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Update Homebrew recipes
brew update
# Install all our dependencies with bundle (See Brewfile)
brew tap homebrew/bundle
brew bundle --file=conf.d/Brewfile
# Make ZSH the default shell environment
chsh -s $(which zsh)
# If there's no zshrc file yet, copy the default
if [ ! -f ~/.zshrc ]; then
wget https://raw.githubusercontent.com/mattiasgeniar/dotfiles/master/zsh/zshrc -O ~/.zshrc
fi
# Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Setup a ruby env
install_rbenv
install_rbenv_binstubs
git_config
# Install the vbguest Vagrant plugin
vagrant plugin install vagrant-vbguest
stopsudo