Skip to content

Instantly share code, notes, and snippets.

@kingardor
Created May 12, 2021 07:31
Show Gist options
  • Save kingardor/c53510b352b663458363021c2f646082 to your computer and use it in GitHub Desktop.
Save kingardor/c53510b352b663458363021c2f646082 to your computer and use it in GitHub Desktop.
zsh and oh-my-zsh setup
# Install dependencies
sudo apt install curl wget git
# Install zsh and oh-my zsh
sudo apt install zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Install Spaceship theme
git clone https://github.com/denysdovhan/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1
ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
sed -i '/ZSH_THEME=/c\ZSH_THEME="spaceship"' ~/.zshrc
# Install syntax highlighting and autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
sed -i '/plugins=/c\plugins=(git zsh-autosuggestions zsh-syntax-highlighting)' ~/.zshrc
source ~/.zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment