DotR
A dotfiles manager that is as dear as a daughter.
Documentation
For detailed documentation, guides, and examples, visit the DotR Wiki.
Features
๐ฆ Package Management
- Import dotfiles from any location into your repository
- Import with symlinks - use
--symlinkflag to deploy as symlinks instead of copies - Deploy dotfiles to their target locations
- Update changes back to your repository
- Remove packages - clean up managed packages with
dotr packages remove - Support for both files and directories
- Profile-based deployment for different environments (work, home, server)
- Profile dependencies to automatically deploy required packages
- Package targets to override destinations per profile
๐ญ Profiles
- Environment-specific configurations (work, home, server, laptop, etc.)
- Add profiles - create new profiles with
dotr profiles add - Remove profiles - delete profiles with
dotr profiles remove - List profiles - view all available profiles with
dotr profiles list - Profile variables that override package and config variables
- Package dependencies per profile for automatic deployment
- Target overrides to deploy same package to different locations per profile
- Switch profiles with
--profileflag on deploy, import, and update commands
๐ง Variables
- Environment variables automatically available in all templates
- Custom user variables defined in
config.toml - Package-level variables for package-specific configurations
- Profile variables that override other variables when a profile is active
- Nested variable structures with TOML tables and arrays
- Print variables command to view all available variables
- Variable priority: User variables > Profile variables > Package variables > Config variables > Environment variables
- Secret
uservariables.tomlfile to save secrets you don't want to share in VCS
๐ฌ Interactive Prompts
- Config-level prompts - Global prompts for values used across all packages
- Package-level prompts - Package-specific prompts for sensitive configuration
- Profile-level prompts - Environment-specific prompts (work credentials, personal tokens, etc.)
- Smart prompting - Only prompts once, saves answers to
.uservariables.toml - Skip existing values - Won't prompt for variables already defined
- Prompts are displayed during deploy, update, and diff commands
๐ Templating (Tera)
- Full Tera template engine support
- Use
{{ variable }}for variable substitution - Use
{% if condition %}for conditional logic - Use
{# comment #}for template comments - Automatic template detection - no configuration needed
- Templates are compiled during deployment with live variables
- Templated files are never backed up (source of truth stays in templates)
โก Actions (Pre/Post Hooks)
- Pre-deployment actions run before package deployment
- Post-deployment actions run after package deployment
- Execute shell commands with full variable interpolation
- Multiple actions per package, executed in order
- Perfect for: installing dependencies, reloading services, setting permissions, etc.
๐ฏ Smart Workflows
- Templated and regular files can coexist in the same repository
- Symlink support - deploy as symlinks for live-editing workflows
- Granular file deployment - only deploys files when content has changed
- Granular backups - creates per-file backups (
.dotrbak) instead of directory backups - Diff command to preview changes before deployment
- Dry run mode - preview deploy and update operations without making any changes
- Remove orphans - clean up packages/profiles and their orphaned dependencies
- Selective package deployment and updates
- Profile-based deployments for different machines/environments
- Directory structure preservation
๐งน Clean Mode
- Clean by default - automatically removes files in destination that don't exist in source
- Keeps your deployed configurations synchronized with your repository
- Package-level control - disable cleaning per package with
clean = falsein config - CLI override - use
--clean=falseto skip cleaning for a single operation - Perfect for maintaining tidy config directories without manual cleanup
- Respects ignore patterns - won't remove files matching your ignore rules
Quick Start
- Initialize a dotfiles repository:
- Import your existing dotfiles:
# Import with symlink (deploy as symlink instead of copy)
# Import for a specific profile
- Deploy dotfiles to a new machine:
# Deploy all packages
# Deploy with a specific profile
# Deploy specific packages
# Dry run to preview what would be deployed without making changes
- Check differences before deploying:
# See what would change if you deployed
# Diff specific packages
# Diff with a profile
- Update after making changes:
# Update with a profile
# Dry run to preview what would be updated without making changes
- Manage packages and profiles:
# List all packages
# List packages with verbose details
# Remove a package
# Remove package and its orphaned dependencies
# List all profiles
# List profiles with verbose details
# Add a new profile
# Remove a profile
# Remove profile and orphaned packages
Variables Example
[]
= "nvim"
[]
= "Your Name"
= "you@example.com"
Use in templates: {{ EDITOR }} and {{ git.email }}
๐ Learn more about Variables
Templating Example
# config file with Tera templates
[]
= "{{ git.name }}"
= "{{ git.email }}"
{% if HOME %}
[]
= "{{ HOME }}/Data"
{% endif %}
๐ Learn more about Templating
Actions Example
[]
= "dotfiles/nvim"
= "~/.config/nvim/"
= ["mkdir -p ~/.local/share/nvim"]
= ["nvim --headless +PluginInstall +qall"]
Actions support variable interpolation and run before/after deployment.
Prompts Example
# Config-level (global)
[]
= "Enter your git email"
# Package-level
[]
[]
= "Enter AWS access key"
# Profile-level
[]
[]
= "Enter work email"
Prompts are asked once on first deploy, saved to .uservariables.toml (gitignored).
Profiles Example
[]
= ["nvim", "git"]
[]
= "work@company.com"
[]
= ["nvim", "gaming"]
[]
= "personal@email.com"
Deploy with: dotr deploy --profile work
๐ Learn more about Profiles
Symlink Support
Import and deploy dotfiles as symlinks instead of copies for live-editing workflows:
# Import with symlink
# Files are deployed to a 'deployed' directory and symlinked to their destinations
# Edit files at ~/.config/nvim/ and changes immediately reflect in the repository
How it works:
- Files are copied from source to
dotfiles/nvim/(your repository) - During deployment, files are copied to
deployed/nvim/ - A symlink is created from
~/.config/nvim/โdeployed/nvim/ - Edit at the symlink location, changes are immediately in
deployed/, ready to update back todotfiles/
Configuration:
[]
= "dotfiles/nvim"
= "~/.config/nvim/"
= true # Enable symlink deployment
๐ Learn more about Symlinks
Diff Command
# Preview changes before deployment
# Diff specific packages
# Diff with profile
Shows line-by-line differences with color coding (+ green for additions, - red for deletions).
Dry Run Mode
# Preview deploy without making any changes
# Preview update without making any changes
# Combine with other options
# Preview deploy without cleaning extra files
Dry run mode shows what would happen during deploy or update operations without:
- Creating or modifying any files
- Creating backups
- Executing pre/post actions
- Removing extra files (clean operations run by default)
Clean Mode
By default, DotR cleans up destination directories by removing files that don't exist in your dotfiles repository. This keeps your configurations synchronized.
# Deploy with cleaning (default behavior)
# Deploy without cleaning extra files
# Update with cleaning (default)
# Update without cleaning
Package-level configuration:
[]
= "dotfiles/nvim"
= "~/.config/nvim/"
= false # Disable cleaning for this package
How it works:
- Files in destination that aren't in source are removed during deploy/update
- Backup files (
.dotrbakextension) are never removed - Files matching ignore patterns are preserved
- CLI
--cleanflag overrides package-level settings - Use
--clean=falseto keep extra files in destination
Installation
Homebrew (macOS and Linux)
Supports both Apple Silicon and Intel Macs.
Cargo
From Source
Pre-built Binaries
Download the latest release for your platform from the releases page:
- Apple Silicon (M1/M2/M3):
dotr-aarch64-apple-darwin.tar.gz - Intel Mac:
dotr-x86_64-apple-darwin.tar.gz - Linux (x86_64):
dotr-x86_64-unknown-linux-gnu.tar.gz - Linux (aarch64):
dotr-aarch64-unknown-linux-gnu.tar.gz - Linux Muslc (x86_64):
dotr-x86_64-unknown-linux-musl.tar.gz - Linux Muslc (aarch64):
dotr-aarch64-unknown-linux-musl.tar.gz
Extract and move the binary to your PATH:
Usage
Usage: dotr [OPTIONS] [COMMAND]
Commands:
init Initialize dotfiles repository.
import Import dotfile and update configuration.
deploy Deploy dotfiles from repository.
update Update dotfiles from deployed versions.
diff Show differences between dotfiles.
print-vars Print all user variables.
packages Manage packages (list, import, deploy, update, remove, diff).
profiles Manage profiles (list, add, remove).
help Print this message or the help of the given subcommand(s)
Options:
-w, --working-dir <WORKING_DIR>
-h, --help Print help
-V, --version Print version
Package Commands
# List packages
# Remove packages
Profile Commands
# List profiles
# Add a profile
# Remove a profile
TODO
- Import configs
- Copy configs
- Update configs
- Variables (with nested structures)
- Templating (Tera engine)
- Actions (pre/post hooks)
- Profiles (environment-specific configs)
- Diff command (preview changes)
- Granular copying and backups
- Interactive prompts (config/package/profile level)
- Dry run mode (preview deploy/update without changes)
- Symlinking config (import and deploy with symlinks)
- Package management (list, remove with orphan cleanup)
- Profile management (add, remove with orphan cleanup)