This guide will walk you through setting up zsh on your Linux system with straightforward steps, without needing to search on Google.
Follow these steps after cloning the repository.
Change into the directory of the cloned repository.
cd ./zsh-setupGrant executable permissions to the main script.
sudo chmod +x ./zshsetup.shExecute the script.
./zshsetup.shRestart your system with the following command.
rebootAdditional customizations you can make to your configuration.
To change the theme, use the following command with the nano text editor:
nano /.zshrcThis will open the file in edit mode. Modify the ZSH_THEME variable to select your desired theme. You can find all available themes here.
To customize the plugins, use the following command with the nano text editor
nano /.zshrcIn the file that opens, update the plugins variable to include your preferred plugins. Here is a recommended configuration
plugins=(
git
zsh-autosuggestions
zsh-history-substring-search
zsh-syntax-highlighting
)You can explore available plugins here.
