-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·64 lines (46 loc) · 1.66 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
54
55
56
57
58
59
60
61
62
63
64
#!/bin/sh
echo "Setting up your Mac..."
# hide "last login" line when starting a new terminal session
touch $HOME/.hushlogin
# Check for Oh My Zsh and install if we don't have it
if test ! $(which omz); then
/bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/HEAD/tools/install.sh)"
fi
# Check for Homebrew and install if we don't have it
if test ! $(which brew); then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
# Update Homebrew recipes
brew update
# Install all our dependencies with bundle (See Brewfile)
brew tap homebrew/bundle
brew bundle
# Make ZSH the default shell environment
chsh -s $(which zsh)
# Install PHP extensions with PECL
pecl install imagick
# copy global gitignore files
cp .gitignore $HOME/.gitignore
# Install Composer
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
# Install global Composer packages
/usr/local/bin/composer global require laravel/installer laravel/valet
# Install Laravel Valet
$HOME/.composer/vendor/bin/valet install
# Install global NPM packages
#
# Create a Sites directory
# This is a default directory for macOS user accounts but doesn't comes pre-installed
mkdir $HOME/Sites
# Symlink the Mackup config file to the home directory
ln -s ./.dotfiles/mackup.cfg $HOME/.mackup.cfg
# Install vs code extensions
cat vscode-extensions.txt | while read i; do
code --install-extension $i --force
done
# Set macOS preferences
# We will run this last because this will reload the shell
source .macos