Skip to content

Instantly share code, notes, and snippets.

@siffring
Created January 13, 2012 21:20
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 siffring/1608761 to your computer and use it in GitHub Desktop.
Save siffring/1608761 to your computer and use it in GitHub Desktop.
How to sync Sublime Text 2 user packages using Dropbox
1) In your Dropbox directory, create a new directory called SublimeUserPackages
2) Open terminal
3) Go to Sublime's packages directory
cd ~/Library/Application Support/Sublime Text 2/Packages
4) Copy the user packages to your new dropbox folder
cp -rp User/* ~/Dropbox/SublimeUserPackages/
5) Delete the old User packages directory. Careful here!
rm -rf User
6) Create a link back to the dropbox folder
ln -s ~/Dropbox/SublimeUserPackages User
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment