#!/usr/bin/env bash echo "Installing packages" sudo apt install -y curl zsh zsh-syntax-highlighting zsh-autosuggestions echo "Downloading .zshrc config" curl https://git.salyards.cc/salsonn/dotfiles/raw/branch/master/configs/.zshrc > ~/.zshrc echo "Updating default shell for $(whoami)" sudo chsh --shell $(which zsh) $(whoami)