-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·30 lines (22 loc) · 887 Bytes
/
install.sh
File metadata and controls
executable file
·30 lines (22 loc) · 887 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
#!/bin/sh
echo "Setting up your Mac..."
# 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
# Install Composer
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
# Link bash profile
[[ ! -s ~/.bash_profile ]] && ln -s ~/.dotfiles/.bash_profile ~/.bash_profile && source ~/.bash_profile
[[ ! -s ~/.bashrc ]] && ln -s ~/.dotfiles/.bashrc ~/.bashrc && source ~/.bashrc
# Git ignore global
[[ ! -s ~/.gitignore_global ]] && ln -s ~/.dotfiles/.gitignore_global ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
# Set macOS preferences
source .macos