Introducing the method to export and import the list of installed packages in the Atom text editor.
apm list --enabled --bare > packages.txt
# or apm list --installed --bare
apm install --packages-file packages.txt
The above commands are executed in the following steps:
- Get the list of installed packages with
apm list --enabled --bare - Redirect with
>and write topackages.txt - Install packages listed in
packages.txtwithapm install --packages-file packages.txt