How Do I Sync My Sublime Text 3 Settings Using Dropbox?

后端 未结 3 1366
春和景丽
春和景丽 2020-12-22 18:18

I would like to sync Sublime Text 3\'s Settings across multiple machines using Dropbox.

How should I set this up?

3条回答
  •  伪装坚强ぢ
    2020-12-22 18:40

    IMPORTANT: My answer is not correct. Tomek's answer is better

    Before you start, close Sublime Text 3

    1. Create a folder in Dropbox called Sublime Text 3

    2. Move the following two folders to this folder.

      ~/Library/Application\ Support/Sublime\ Text\ 3/Packages
      
      ~/Library/Application\ Support/Sublime\ Text\ 3/Installed\ Packages
      
    3. Create symlinks from their original location to their new locations in Dropbox:

      $ ln -s ~/Dropbox/App\ Settings/Sublime\ Text\ 3/Installed Packages ~/Library/Application\ Support/Sublime\ Text\ 3/Installed\ Packages
      
      $ ln -s ~/Dropbox/App\ Settings/Sublime\ Text\ 3/Packages ~/Library/Application\ Support/Sublime\ Text\ 3/Packages
      
    4. Open Sublime Text 3

提交回复
热议问题