Skip to content

Instantly share code, notes, and snippets.

@k3muri84
Forked from robbyrussell/ohmyzsh-dropbox-sync.sh
Created August 29, 2016 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k3muri84/d8b5ef32d9a2962645e1b740a72306b6 to your computer and use it in GitHub Desktop.
Save k3muri84/d8b5ef32d9a2962645e1b740a72306b6 to your computer and use it in GitHub Desktop.
Keep your @ohmyzsh ~/.zshrc in sync via dropbox
# Was asked how I keep my zshrc config sync'd between my computers with Dropbox
# Add a new directory in your Dropbox (or use an existing one)
mkdir -p ~/Dropbox/ohmyzsh
# move existing file to Dropbox
mv ~/.zshrc ~/Dropbox/ohmyzsh/zshrc
# symlink file back to your local directory
ln -s ~/Dropbox/ohmyzsh/zshrc ~/.zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment