This repository contains my shell configuration files, including my .zshrc
, and a script to sync it with GitHub.
shell.sh
: A script that copies my.zshrc
file to this repo and commits the changes automatically..zshrc
: My personal Zsh configuration file.
To manually sync .zshrc
to GitHub, run:
./sync.sh
You can also set up a cron job for automatic syncing:
crontab -e
Add the following line:
*/30 * * * * ~/Code/shell/sync.sh >> ~/.shell_sync.log 2>&1
This will sync .zshrc every 30 minutes.