This guide provides instructions on how to install ZSH and Oh-my-zsh with a Powerline-like theme in Ubuntu
- First, install Powerline fonts. You can find them here.
- Update your system's package list:
sudo apt-get update
- Install ZSH (Z Shell) on your system:
sudo apt install zsh
- Change your default shell to ZSH:
chsh -s $(which zsh)
- Install Oh-my-zsh, a framework for managing your ZSH configuration:
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Update the theme in your
.zshrc
file to have a Powerline look:sed -i 's/robbyrussell/agnoster/g' ~/.zshrc
- Finally, restart your terminal to apply the changes.
This guide should help you set up ZSH with a Powerline-like appearance in Ubuntu. If you have any questions or need further modifications, feel free to ask!