-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.sh
41 lines (26 loc) · 817 Bytes
/
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
#!/bin/bash
echo "Installing dotfiles"
source install/link.sh
if [ "$(uname)" == "Darwin" ]; then
echo "Running on Mac OS X"
echo ">>> homebrew"
source install/brew.sh
echo ">>> homebrew-cask"
source install/brew-cask.sh
else
echo "Running on Ubuntu"
echo ">>> apt-get"
source install/apt-get.sh
fi
echo "Installing oh-my-zsh"
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
echo "Installing Tmux Plugin Manager"
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
echo "Installing Powerline Fonts"
git clone https://github.com/powerline/fonts.git /tmp/powerline-fonts
/tmp/powerline-fonts/install.sh
echo "Installing Neovim extras"
sh install/neovim.sh
echo "Configuring zsh as default shell"
chsh -s $(which zsh)
echo "Done!"