Last active
August 29, 2015 14:08
-
-
Save ff6347/63780a933cd5fa718c81 to your computer and use it in GitHub Desktop.
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 characters
| # Create the sync directory in iCloud | |
| $ mkdir ~/Library/Mobile\ Documents/com~sublimetext~2/ | |
| # Move your ST2 "Packages", "Installed Packages" and "Pristine Packages" to iCloud | |
| $ cd ~/Library/Application\ Support/Sublime\ Text\ 2/ | |
| $ mv Packages/ ~/Library/Mobile\ Documents/com~sublimetext~2/ | |
| $ mv Installed\ Packages/ ~/Library/Mobile\ Documents/com~sublimetext~2/ | |
| $ mv Pristine\ Packages/ ~/Library/Mobile\ Documents/com~sublimetext~2/ | |
| # Then symlink your iCloud directories back locally | |
| $ ln -s ~/Library/Mobile\ Documents/com~sublimetext~2/Packages/ ./Packages/ | |
| $ ln -s ~/Library/Mobile\ Documents/com~sublimetext~2/Installed\ Packages/ ./Installed\ Packages/ | |
| $ ln -s ~/Library/Mobile\ Documents/com~sublimetext~2/Pristine\ Packages/ ./Pristine\ Packages/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment