Install Zsh and oh-my-zsh (Linux)

PHOTO EMBED

Wed Feb 02 2022 22:16:48 GMT+0000 (Coordinated Universal Time)

Saved by @jimbrig #installation #linux #bash #wsl

#!/usr/bin/env bash

# install ZSH
sudo apt -y install zsh

# Install oh-my-zsh
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh

# Install some external plugins:
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugings/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-completions ~/.oh-my-zsh/custom/plugins/zsh-completions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting

# Set Zsh as your default shell:
chsh -s /bin/zsh
content_copyCOPY

https://github.com/jimbrig/dotfiles-wsl/blob/main/scripts/dev/scripts/install-zsh.sh