forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_deps.sh
executable file
·23 lines (17 loc) · 1006 Bytes
/
install_deps.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
./brew.sh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
if [[ ! -d "${ZSH_CUSTOM:-~/.oh-my-zsh/custom}themes/powerlevel10k" ]]; then
git clone https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
fi
if [[ ! -d "${ZSH_CUSTOM:-~/.oh-my-zsh/plugins}/zsh-syntax-highlighting" ]]; then
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
fi
if [[ ! -d "${ZSH_CUSTOM:-~/.oh-my-zsh/plugins}/zsh-autosuggestions" ]]; then
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
fi
pip3 install --upgrade pip setuptools
pip2 install --upgrade pip setuptools
pip2 install virtualenv
pip3 install pygments --upgrade
pip3 install awscli --upgrade --user