moxdev
6/3/2016 - 1:58 AM

Keep your @ohmyzsh ~/.zshrc in sync via dropbox

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