Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to sync Sublime Text settings across multiple computers?

I have two computers, a desktop and a laptop. Now I have set up my ENV to sync with the help of a dropbox link.

Is there a way to sync my Sublime Text 3 settings between these two computers including all my plugins, preference files, etc... and, if so, how can I set things up to sync properly?

like image 693
R.J. Robinson Avatar asked Apr 16 '15 23:04

R.J. Robinson


People also ask

Where are sublime text settings stored?

In general, you should place your settings in Packages/User/Preferences. sublime-settings. If you want to specify settings for a certain file type, for example, Python, you should place them in Packages/User/Python. sublime-settings.

How do I sync Sublime Text 3?

Can be done with 2 steps using Google Drive: Download Drive for mac/windows (https://www.google.com/drive/download/) sync this folder: C:\Users\{user_name}\AppData\Roaming\Sublime Text 3\Packages\User (right click and sync)

How do I set sublime text to default settings?

Open the Sublime Text default settings file: Mac OS X: Sublime Text 2 > Preferences > Settings - Default. Windows: Preferences > Settings - Default. Linux: Preferences > Settings - Default.


1 Answers

I am assuming you are using Package Control for managing your plugins.

What to Sync

Both a list of your packages as well as all of your settings files are all contained within your Packages/User/ folder and that is what you want to keep synced. Assuming that folder is synced, then all you have to do is make sure Package Control is installed and it will automatically install the correct packages based on the packages list you synced.

How to Sync

See this page on the Package Control website for instructions on syncing your settings.

The techniques listed there essentially are either using Git directly in your Packages/User/ folder or are using Dropbox (although the same concept would apply to any cloud service) in combination with symbolic links (since your Dropbox directory and your Sublime Text install are probably not in the same place on your hard drive).

like image 101
Rob Wise Avatar answered Sep 18 '22 09:09

Rob Wise