732 B
732 B
Dotfiles Deployment Guide
Deploy dotfiles using GNU Stow.
Each subdirectory is a stow package corresponding to a set of related dotfiles.
Deploy Dotfiles
Run Stow from within your dotfiles directory:
cd ~/dotfiles
stow bash
stow vim
stow git
This will symlink the files into your $HOME directory.
Deploy All Dotfiles
To deploy all dotfiles at once:
stow *
Updating Dotfiles
- Edit files in the respective subdirectories.
- Commit and push changes as usual with Git.
Undoing a Stow
To remove symlinks created by Stow:
stow -D bash
For more details, see the GNU Stow manual.