SHA256
1
0
Files
deploy/roles/dotfiles/README.md

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

  1. Edit files in the respective subdirectories.
  2. 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.