-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdotbro.toml
More file actions
75 lines (67 loc) · 1.41 KB
/
Copy pathdotbro.toml
File metadata and controls
75 lines (67 loc) · 1.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Dotbro profile.
# Reference: https://github.com/hypnoglow/dotbro
#
# Note:
# - Almost all options have default value.
# - You can use $ENV_VARIABLE in paths.
# [directories]
#
# Directories section defines source, destination and backup directories.
[directories]
# dotfiles
#
# Directory of your dotfiles repository.
# This is the source directory for dotfiles.
#
# Default: directory of this config.
#
# Example:
# dotfiles = "$HOME/dotfiles"
dotfiles = ""
# destination
#
# Directory where dotfiles will be installed.
# This is the destination directory for dotfiles.
#
# Default: $HOME
#
# Example:
# destination = "$HOME/.config"
destination = "$HOME"
# backup
#
# Directory where original files will be backed up before new files are installed.
#
# Default: $HOME/.dotfiles~
#
# Example:
# backup = "$HOME/.dotfiles-backup"
backup = "$HOME/.dotfiles~"
# [mapping]
#
# Mapping section defines source and destination files to install.
#
# This section is basically a list of key-value pairs.
#
# Source path is relative to [directories.dotfiles].
# Destination path is relative to [directories.destination].
#
# Directories are also supported.
# Types must match: either both are directories or both are files.
#
# Example:
#
# # Binaries
# "bin" = "bin"
#
# # Git
# "git/config" = ".gitconfig"
#
# # ZSH
# "zsh/zprofile" = ".zprofile"
# "zsh/zshrc" = ".zshrc"
# "zsh/zlogin" = ".zlogin"
#
# # Zed
# "zed" = ".config/zed"
[mapping]