-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotfiles.yaml
More file actions
61 lines (51 loc) · 1.35 KB
/
Copy pathdotfiles.yaml
File metadata and controls
61 lines (51 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Dotfiles Manager Configuration
# This file defines how your dotfiles are organized and managed
# Repository settings
repo:
# Root directory of your dotfiles repo (relative to this config file)
root: "."
# Where to store backups when replacing existing files
backup_dir: ".backups"
# OS-specific configuration
# Files matching these patterns will be auto-selected based on current OS
os_specific:
patterns:
- "*.linux"
- "*.macos"
- "*.darwin"
- "*.windows"
- "*.wsl"
# Map OS names to pattern suffixes
mappings:
linux: ".linux"
darwin: ".macos" # macOS
windows: ".windows"
# Directories to scan for untracked configs
scan_paths:
- "~/.config"
- "~/"
# Auto-import list - these will be suggested for import during scan
# Patterns can be directories or files
auto_import:
- "kitty"
- "hypr"
- "tmux"
- "alacritty"
- "wezterm"
- "starship.toml"
- ".tmux.conf"
- ".bashrc"
- ".zshrc"
- ".gitconfig"
- ".p10k.zsh"
# Exclusions file (gitignore-style patterns)
# See .dotfiles_ignore for actual patterns
exclusions_file: ".dotfiles_ignore"
# Linking behavior
linking:
# Create parent directories if they don't exist
create_parents: true
# Follow symlinks when checking if destination exists
follow_symlinks: true
# Verify symlinks point to repo (for status check)
verify_targets: true