Skip to content

Instantly share code, notes, and snippets.

@AlexZeitler
Created May 13, 2018 19:30
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save AlexZeitler/605c2fd7340f9d82805a0ee26800e0fa to your computer and use it in GitHub Desktop.
Save AlexZeitler/605c2fd7340f9d82805a0ee26800e0fa to your computer and use it in GitHub Desktop.
Installing zsh / oh-my-zsh / Powerlevel9k on Ubuntu 18.04
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
wget https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf
wget https://github.com/powerline/powerline/raw/develop/font/10-powerline-symbols.conf
mkdir ~/.local/share/fonts/
mv PowerlineSymbols.otf ~/.local/share/fonts/
fc-cache -vf ~/.local/share/fonts/
mkdir ~/.config/fontconfig/conf.d/
mv 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/
echo "Log out of your session and login again."
sudo apt-get update
sudo apt-get install zsh git curl -y
chsh -s $(which zsh)
echo "Log out of your session and login again. Then run setup-oh-my-zsh-powerlevel9k.sh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment