Skip to content

Instantly share code, notes, and snippets.

@jacobkossman
Forked from robbyrussell/ohmyzsh-dropbox-sync.sh
Last active July 27, 2016 08:53
Show Gist options
  • Save jacobkossman/8e687e45e4361520a41445352d2af873 to your computer and use it in GitHub Desktop.
Save jacobkossman/8e687e45e4361520a41445352d2af873 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
# change ZSH var to dynamic
export ZSH=~/.oh-my-zsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment