.zshrc

1# Set the directory where Oh My Zsh is installed
2# The variable $HOME points to your home directory
3export ZSH="$HOME/.oh-my-zsh"
4
5# Set the Zsh theme to "cloud"
6# You can change this to other themes that come with Oh My Zsh, or create your own custom theme
7ZSH_THEME="cloud"
8
9# Specify the plugins to load
10# 'git' provides useful aliases and functions for git, while 'node' gives Node.js helpers and shortcuts
11plugins=(git node)
12
13# Source the main Oh My Zsh script to apply the configuration
14# This loads the theme, plugins, and other configurations provided by Oh My Zsh
15source $ZSH/oh-my-zsh.sh
16