Created
January 13, 2012 21:20
-
-
Save siffring/1608761 to your computer and use it in GitHub Desktop.
How to sync Sublime Text 2 user packages using Dropbox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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