This guide will help you copy .zprofile
and .zshrc
settings from this repository into your system.
- Ensure Zsh is installed. If not, install it using Homebrew:
brew install zsh
Navigate to your home directory and clone this repository:
cd ~
git clone [email protected]:utopiaeh/mac-configs.git zsh-settings-temp
Replace your system’s profile and .zshrc
with the files from this repository:
This will copy everything from zsh-settings-temp into your home directory.
cp -rf ~/zsh-settings-temp/* ~/
If you want to copy only hidden files like .zshrc and .zprofile, use:
cp -rf ~/zsh-settings-temp/.* ~/
Remove the temporary cloned folder:
rm -rf ~/zsh-settings-temp
Reload your shell to apply the new settings:
source ~/.zshrc
source ~/.zprofile
You have successfully copied and applied your custom .zprofile
and .zshrc
configuration. Enjoy your personalized shell experience! 😊