I would like to sync Sublime Text 3's Settings across multiple machines using Dropbox.
How should I set this up?
I've been syncing my Sublime settings for a while between multiple locations, all running OS X. I've had some minor problems. Finally, I decided to look into it which led me to what I would consider the authoritative description of how to sync Sublime setting between multiple machines using Dropbox:
Sublime Package Control > Docs > Syncing
https://sublime.wbond.net/docs/syncing
Here is the basic summary:
To properly sync your installed packages across different machines, you actually do not want to sync the whole
Packages/
andInstalled Packages/
folders. The reason for this is that some packages have different versions for different operating systems. By syncing the actual package contents across operating systems, you will possibly run into broken packages.The proper solution is to:
- Install Package Control on all machines
- Then to sync only the
Packages/User/
folder.This folder contains the
Package Control.sublime-settings
file, which includes a list of all installed packages. If this file is copied to another machine, the next time Sublime Text is started, Package Control will install the correct version of any missing packages.
To sync the folder, you generally move Packages/User/
into your Dropbox and create a symlink to it from Sublime Text 3/Packages/
. Detailed instructions for various operating systems are provided via the link above.