Does anyone have experience using GNU Stow for managing dot files? I’m especially interested in using it to build a git repo to include my .vimrc
file so I can sync it between hosts.
I know I’ve seen other methods, such as making your home directory a bare git repo, so you can check-in your config files without moving them. There is also the chezmoi golang project.
How do others sync .vimrc
between hosts?
Right! Recursive is implied by
-a
Yep. There’s a single
./install
script in project root that callsinstall-cfg
andinstall-plugins
. I only really need to run it once (first time I set up on a machine), and every time I add a new file. If all I’ve done is update existing files, a simplegit pull
will update my dotfiles’ content automatically, as everything is symlinked already.