-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfresh.sh
More file actions
executable file
·59 lines (44 loc) · 1.92 KB
/
fresh.sh
File metadata and controls
executable file
·59 lines (44 loc) · 1.92 KB
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
#!/bin/sh
echo "Setting up your Mac..."
# Hide "last login" line when starting a new terminal session
touch $HOME/.hushlogin
# Check if Xcode Command Line Tools are installed
if ! xcode-select -p &>/dev/null; then
echo "Xcode Command Line Tools not found. Installing..."
xcode-select --install
else
echo "Xcode Command Line Tools already installed."
fi
# 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 "$(/usr/local/bin/brew shellenv)"' >> $HOME/.zprofile
eval "$(/usr/local/bin/brew shellenv)"
fi
# Update Homebrew recipes
brew update
brew analytics off
# Install all our dependencies with bundle (See Brewfile)
brew bundle --file ./Brewfile
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/fdellwing/zsh-bat.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-bat
# Removes .zshrc from $HOME (if it exists) and symlinks the .zshrc file from the .dotfiles
rm -rf $HOME/.zshrc
ln -s $HOME/.dotfiles/.zshrc $HOME/.zshrc
# Add gitconfig
ln -s $HOME/.dotfiles/.gitconfig $HOME/.gitconfig
# Add global gitignore
ln -s $HOME/.dotfiles/.global-gitignore $HOME/.global-gitignore
#git config --global core.excludesfile $HOME/.global-gitignore
# Symlink the Mackup config file to the home directory
ln -s $HOME/.dotfiles/.mackup.cfg $HOME/.mackup.cfg
# Clone Github repositories
./clone.sh
# Set macOS preferences
# We will run this last because this will reload the shell
source .macos