Skip to content

Instantly share code, notes, and snippets.

@sandeepkumar-skb
Created June 26, 2020 17:57
Show Gist options
  • Save sandeepkumar-skb/5615bb334971530cce0b3661a8e70de5 to your computer and use it in GitHub Desktop.
Save sandeepkumar-skb/5615bb334971530cce0b3661a8e70de5 to your computer and use it in GitHub Desktop.
#!/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 git@gist.github.com: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