If I want to take my atom stuff to another computer, like my vim dotfiles, how can I do that easily? I cannot figure it out. The ~/.atom directory makes me think that it could be easily portable, but I’m not so sure.
How can I make the package list portable?
leedohm
#2
The non-directory contents of the ~/.atom
directory are portable:
- config.cson
- init.coffee
- keymap.cson
- overrides.cson
- snippets.cson
- styles.less
I use the rcm tool to synchronize my dotfiles in this way.
Backup atom packages, configs
leedohm
#4
Ah, sorry … that’ll teach me to reply between meetings …
In that case, this is really a duplicate of another topic and you can take a look at my reply there:
gmmeyer
#5
Oh, no, the first part was very helpful! I was just also wondering about the second thing, thank you very much!
focusaurus
#6
Here’s the shell function I use in combination with my dotfiles git repo.
save_atom () {
ls ~/.atom/packages > ~/projects/dotfiles/atom/packages.txt
}
leedohm
#7
The new apm list --installed --bare
command lists only user-installed packages and includes their version numbers so you can ensure that you install the same package versions on all machines.