macOS dotfiles managed with GNU Stow.
curl -fsSL https://raw.githubusercontent.com/heyJordanParker/dotfiles/master/setup.sh | bashThis installs Xcode CLI tools, Homebrew, all packages from Brewfile, bun, and symlinks configs.
# Add a new config
cd ~/dotfiles
mkdir -p newapp/.config/newapp
mv ~/.config/newapp/config newapp/.config/newapp/
stow newapp
# Remove symlinks
stow -D newapp
# Re-link after changes
stow -R newappEach top-level directory is a stow package. Files inside mirror their target location relative to $HOME.