Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to migrate from one Mac to another, and want Sublime Text 2 on a new computer to have all the same configuration/plugins I have installed on the old one.

Is there some folder(s) I could just copy and restore on another one to replicate everything?

share|improve this question
Looks like here is enough info to do that: opensourcehacker.com/2012/05/24/… – earlyadopter Jul 6 '12 at 16:59

1 Answer

up vote 69 down vote accepted

I just set up a good solution for this, it requires dropbox. I am currently using this to sync plugins and settings across ~5 different sublime installs on windows, linux, osx, and a few vm's.

  • Step 1: use PackageControl to manage all your plugins, its awesome.

  • Step 2: Add a "Sublime" directory to your root drop-box directory (I replicated the full directory structure for the hell of it, {DropBox}/Sublime/Packages/User). Make sure sublime is closed, and move the contents of {SublimeRoot}/Packages/User in to the dropbox directory you just made. Delete {SublimeRoot}/Packages/User, and replace it with a symlink that points to {DropBox}/Sublime/Packages/User.

Use this same process on every computer where you use sublime, it accomplishes 2 things.

  • 1) The contents of your User/ directory are synced, so all your custom settings are the same across machines.

  • 2) Every time PackageControl starts up, it checks the Package Control.sublime-settings in your User/ directory. If if finds a plugin that should be installed according to the settings, but isn't actually installed, it automatically installs it, no questions asked.

Setting up another computer with this solution simply requires sublime and package control to be installed, then just delete the {SublimeRoot}/Packages/User/ directory and point it to the copy in dropbox with a symbolic link. Next time you fire up sublime, package control will automatically install all your plugins.

Creating the symbolic links: execute from the {Sublime}/Packages directory

  • Windows: mklink /D .\User C:\Users\[username]\Dropbox\Sublime\Packages\User
  • Linux/OSX: ln -s {DropboxRoot}/Sublime/Packages/User ./User
share|improve this answer
This is really awesome! But I found my user settings in C:\Users[username]\AppData\Roaming\Sublime Text 2\Packages\User (Windows 7 Ultimate SP1) – ed1nh0 Oct 5 '12 at 12:17
3  
I also did the same thing but with google drive. mklink /D User g:\GoogleDrive\"Google Drive"\sublimetext – Kelvin Nov 28 '12 at 2:46
If you get an error loading a package: 1) don't forget to install package control on the new computer with sublime, and 2) you may have to wait - check the console with ctrl-` to see messages scrolling by about installing stuff. You may have to re-start Sublime after the new packages are installed. – Ivanoats Jan 22 at 22:09
Whern I run sublime in console(ctrl-`) I get this error: IOError: [Errno 2] No such file or directory: u'/Users/mac/Library/Application Support/Sublime Text 2/Packages/User/Package Control.last-run' Unable to write settings file: /Users/mac/Library/Application Support/Sublime Text 2/Packages/User/Fetch.sublime-settings no packages are reinstalled, any help? – kumo99 Feb 5 at 14:13
1  
@crstamps2, yes it does. the core sublime application files live in a totally different location in the file system. – jdc0589 Apr 2 at 21:08
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.