Skip to content

Instantly share code, notes, and snippets.

@Guihgo
Forked from johndpope/install.sh
Last active August 25, 2024 22:08
Show Gist options
  • Save Guihgo/a449d45afb5adb7740b9f9152e4235de to your computer and use it in GitHub Desktop.
Save Guihgo/a449d45afb5adb7740b9f9152e4235de to your computer and use it in GitHub Desktop.
Installing zsh + oh-my-zsh on Amazon EC2 Amazon Linux 2 AMI
sudo yum update
# Installing ZSH
sudo yum -y install zsh
# Check ZSH has been installed
zsh --version
# Install "util-linux-user" because "chsh" is not available by default
# See https://superuser.com/a/1389273/599050
sudo yum install util-linux-user
# Change default shell for current user, most of the times it would be "ec2-user"
# Or use "sudo chsh -s $(which zsh) $(whoami)" to be sure
chsh -s "$(which zsh)"
# Back to bash: chsh -s /bin/bash
# Install oh-my-zsh from https://github.com/ohmyzsh/ohmyzsh#basic-installation
# OPTIONAL
# I recommend you to install the following plugins which make your life easier and more colorful
# Assuming you have git installed
# If not, simply do "sudo yum install git -y"
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# And then add them to "~/.zshrc" file
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment