Last active
July 25, 2019 08:37
-
-
Save Den1al/fc665c07d83557bb5d754267f8c9339e to your computer and use it in GitHub Desktop.
ZSH Bootstrap Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# general | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
# zshrc | |
sudo apt install -y zsh | |
sudo apt-get install -y powerline fonts-powerline | |
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh | |
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc | |
sudo chsh -s /bin/zsh ubuntu | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.zsh-syntax-highlighting" --depth 1 | |
echo "source $HOME/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> "$HOME/.zshrc" | |
# theme: ZSH_THEME="af-magic" | |
# plguins: plugins = (git pyenv docker docker-compose) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment