Synchronize settings, keymaps, user styles, init script, snippets and installed packages across Atom instances.
- Sync Atom's and package settings
- Sync installed packages
- Sync user keymaps
- Sync user styles
- Sync user init script
- Sync snippets
- Sync user defined text files
- Manual backup/restore to a gist
$ apm install sync-settings
or using the Install packages pane from Atom Settings.
- Open Sync Settings configuration in Atom Settings.
- Create a new personal access token which has the
gist
scope and be sure to activate permissions: Gist -> create gists. - Copy the access token to Sync Settings configuration.
- Create a new gist:
- The description can be left empty. It will be set when invoking the
backup
command the first time. - Use
packages.json
as the filename. - Put some arbitrary non-empty content into the file. It will be overwritten by the first invocation of the
backup
command - Save the gist.
- Copy the gist id (last part of url after the username) to Sync Settings configuration.
Disclaimer: GitHub Gists are by default public. If you don't want other people to easily find your gist (i.e. if you use certain packages, storing auth-tokens, a malicious party could abuse them), you should make sure to create a secret gist.
- Click on Menu "Open Your Config" to edit Atom's config.cson
- Use these keys:
"sync-settings":
gistId: "b3025...88c41c"
personalAccessToken: "6a10cc207b....7a67e871"
Open the Atom Command Palette where you can search for the following list of commands.
Backup or restore all settings from the Packages menu or use one of the following commands:
sync-settings:backup
sync-settings:restore
View your online backup using the following command:
sync-settings:view-backup
Check the latest backup is applied:
sync-settings:check-backup
You can also fork existing settings from a different GitHub user using the following command:
sync-settings:fork
- In the following input field enter the Gist ID to fork
- Create a new personal access token which has the
gist
scope and will be used for testing purposes. - Export it with
export GITHUB_TOKEN=YOUR_TOKEN
- Run
apm test
If you're going to submit a pull request, please try to follow the official contribution guidelines of Atom.
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Ensure tests are passing. See running-the-tests.
- Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create new Pull Request.