Installing Oh-my-zshv and zsh-autosuggestions, zsh-syntax-highlighting
# Prepare
sudo apt update
sudo apt upgrade
sudo apt install wget git -y
# Installing Zsh
sudo apt install zsh -y
# Installing oh-my-zsh
sh -c “$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)”
# Installing zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
vim ~/.zshrcplugins=(
git
docker
docker-compose
history
rsync
safe-paste
zsh-autosuggestions
)
# Installing zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
vim ~/.zshrc
plugins=(
git
docker
docker-compose
history
rsync
safe-paste
zsh-autosuggestions
zsh-syntax-highlighting
)
# Installing themes
See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
vim ~/.zshrc
ZSH_THEME=”candy”
Finnally, to apply all:
source ~/.zshrc