Created
February 14, 2014 18:33
-
-
Save mindmergedesign/9006399 to your computer and use it in GitHub Desktop.
Revisions
-
mindmergedesign renamed this gist
Feb 14, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
mindmergedesign created this gist
Feb 14, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ #################### # FROM MAIN COMPUTER #################### # Create the sync directory in Dropbox $ mkdir ~/Dropbox/sublime-text-3 # Move your ST3 "Packages" and "Installed Packages" to Dropbox $ cd ~/Library/Application\ Support/Sublime\ Text\ 3 $ mv Packages/ ~/Dropbox/sublime-text-3 $ mv Installed\ Packages/ ~/Dropbox/sublime-text-3 # Then symlink your Dropbox directories back locally $ ln -s ~/Dropbox/sublime-text-3/Packages $ ln -s ~/Dropbox/sublime-text-3/Installed\ Packages ###################### # FROM OTHER COMPUTERS ###################### # Remove the "outdated" directories $ cd ~/Library/Application\ Support/Sublime\ Text\ 3 $ rm -rf Packages $ rm -rf Installed\ Packages # Then symlink your Dropbox directories back locally $ ln -s ~/Dropbox/sublime-text-3/Packages $ ln -s ~/Dropbox/sublime-text-3/Installed\ Packages