Created
June 26, 2020 17:57
-
-
Save sandeepkumar-skb/5615bb334971530cce0b3661a8e70de5 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
sudo apt-get update | |
sudo apt upgrade | |
sudo apt install zsh | |
sudo apt-get install powerline fonts fonts-powerline | |
echo "################Cloning OH MY ZSH####################" | |
echo "" | |
echo "" | |
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh | |
echo "################Cloning POWERLEVEL9K#################" | |
echo "" | |
echo "" | |
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k | |
echo "################Cloning ZSH Syntax Highlighting#####################" | |
echo "" | |
echo "" | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.zsh-syntax-highlighting" --depth 1 | |
echo "####################Cloning Sandeep's zshrc file#######################" | |
echo "" | |
echo "" | |
git clone [email protected]:e91694acaa2eb7cbaabc55b4dae8a1f2.git ~/.zshrc | |
echo "source $HOME/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> "$HOME/.zshrc" | |
echo "" | |
echo "" | |
echo "Change the default Shell to ZSH" | |
echo "Run: chsh -s /bin/zsh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment