Reputation: 17417
I'm a Vim user who's recently discovered Atom and I think it's great. One thing that it seems to be missing is the ability to version which plugins I have installed, such that if I were to install Atom on a new machine, I would pull down some hypothetical configuration file and it would know to install all my plugins.
Using VIM and a plugin manager, this would typically just be stored in the vim config. Does this already exist in Atom and I'm just missing something?
Upvotes: 1
Views: 89
Reputation: 2288
You can try using atom package manager (apm) :
First export the list of your plugins in a file
apm list --installed --bare > packages.list
The file will look like this :
[email protected]
[email protected]
[email protected]
...
Then when you are on a new machine, just install Atom and run
apm install --packages-file packages.list
Otherwise you can also try to look into this plugin : https://atom.io/packages/sync-settings
Upvotes: 2