Last active
August 29, 2015 14:18
-
-
Save greglgomez/10afa666de255d9b91f6 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
# Changing directory to where Sublime stores user prefs | |
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/ | |
# Creating directory in Dropbox root to sync from | |
mkdir ~/Dropbox/Sublime | |
# Moving the "User" directory from Sublime default location to Dropbox directory we just created | |
mv User ~/Dropbox/Sublime/ | |
# Creating Symlink from Sublime directory (current working directory) to Dropbox directory | |
ln -s ~/Dropbox/Sublime/User |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment