Skip to content

Latest commit

 

History

History
64 lines (51 loc) · 1.55 KB

File metadata and controls

64 lines (51 loc) · 1.55 KB

ZSH Setup

This guide will walk you through setting up zsh on your Linux system with straightforward steps, without needing to search on Google.

Installation

Follow these steps after cloning the repository.

Step 1

Change into the directory of the cloned repository.

  cd ./zsh-setup

Step 2

Grant executable permissions to the main script.

  sudo chmod +x ./zshsetup.sh

Step 3

Execute the script.

  ./zshsetup.sh

Step 4

Restart your system with the following command.

  reboot

Appendix

Additional customizations you can make to your configuration.

Change the Zsh Theme

To change the theme, use the following command with the nano text editor:

  nano /.zshrc

This will open the file in edit mode. Modify the ZSH_THEME variable to select your desired theme. You can find all available themes here.

Modify Plugins

To customize the plugins, use the following command with the nano text editor

 nano /.zshrc

In 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.


Author