8.2 KiB
Config
Location
The config file used by dotdrop is config.yaml.
Unless specified otherwise, dotdrop will look in the following places for its config file and use the first one found:
- Current/working directory or the directory where dotdrop.sh is located if used
${XDG_CONFIG_HOME}/dotdrop/~/.config/dotdrop//etc/xdg/dotdrop//etc/dotdrop/
You can force dotdrop to use a different file either by using the -c/--cfg CLI switch
or by defining the DOTDROP_CONFIG environment variable.
Variables
Multiple variables can be used within the config file to parametrize the following elements of the config:
- Dotfile
srcanddstpaths (See Dynamic dotfile paths) - External path specifications
import_variablesimport_actionsimport_configs- Profiles'
import - Profiles'
include
actions and transformations also support the use of variables,
but those are resolved when the action/transformation is executed
(See Dynamic actions,
Dynamic transformations and Templating).
The following variables are available in the config files:
- Variables defined in the config
- Interpreted variables defined in the config
- User variables defined in the config
- Profile variables defined in the config
- Environment variables:
{{@@ env['MY_VAR'] @@}} - Dotdrop header:
{{@@ header() @@}}(see Dotdrop header)
as well as all template methods and template filters.
Note that all variables available in the config file will then be available during templating.
Here are some rules on the use of variables in configs:
- Interpreted variables are executed in their own file.
- Interpreted variables and variables are templated before interpreted variables are executed.
- Config files do not have access to variables defined above in the import tree.
dynvariablestake precedence overvariables.- Profile
(dyn)variablestake precedence over any other(dyn)variables. - Profile
(dyn)variablestake precedence over profile's included(dyn)variables. - External/imported
(dyn)variablestake precedence over(dyn)variablesdefined inside the main config file. - User variables are ignored if any other variable with the same key is defined.
Permissions
Dotdrop allows you to control the permissions applied to a dotfile using the config dotfile entry chmod. A chmod entry on a directory is applied to the directory only, not recursively.
For example:
dotfiles:
f_file:
src: file
dst: ~/file
chmod: 644
f_dir:
src: dir
dst: ~/dir
chmod: 744
On import, the following rules are applied:
- If the
-m/--preserve-modeswitch is provided or the config optionchmod_on_importis true, the imported file's permissions are stored in achmodentry - If the imported file's permissions differ from the umask, then the permissions are automatically
stored in the
chmodentry. - Otherwise, no
chmodentry is added
On install, the following rules are applied:
- If
chmodis specified in the dotfile, it will be applied to the installed dotfile. - Otherwise, the permissions of the dotfile in the
dotpathare applied. - If the global setting
force_chmodis set to true, dotdrop will not ask for confirmation to apply permissions.
On update:
- If the permissions of the file in the filesystem differ from the dotfile in the
dotpath, then the dotfile entrychmodis added/updated accordingly.
Symlinking dotfiles
Dotdrop is able to install dotfiles in three different ways,
which are controlled by the link config attribute of each dotfile:
link: nolink: The dotfile (file or directory) is copied to its destinationlink: link: The dotfile (file or directory) is symlinked to its destinationlink: link_children: The files/directories found under the dotfile (directory) are symlinked to their destination
For more, see this how-to.
Template config entries
Some entries in the config can use the templating feature (See templating):
| Entry | Related doc |
|---|---|
| dotfile src | Dynamic dotfile paths |
| dotfile dst | Dynamic dotfile paths |
| dotfile link | Dynamic dotfile link value |
| variables | variables |
| dynvariables | dynvariables |
| actions | dynamic actions |
| profile include | Profile include |
| profile import | Profile import |
| import_variables | import_variables |
| import_actions | import_actions |
| import_configs | import_configs |
All dotfiles for a profile
To use all defined dotfiles in a profile, simply use
the keyword ALL.
For example:
dotfiles:
f_xinitrc:
dst: ~/.xinitrc
src: xinitrc
f_vimrc:
dst: ~/.vimrc
src: vimrc
profiles:
host1:
dotfiles:
- ALL
host2:
dotfiles:
- f_vimrc
Ignore patterns
It is possible to ignore specific patterns when using dotdrop.
- For install:
- Using
instignorein the config file
- Using
- For import:
- Using
impignorein the config file
- Using
- For compare:
- Using
cmpignorein the config file - Using the command line switch
-i/--ignore
- Using
- For update:
- Using
upignorein the config file - Using the command line switch
-i/--ignore
- Using
The ignore pattern must follow Unix shell-style wildcards, like, for example */path/to/file.
Make sure to quote these when using wildcards in the config file.
config:
cmpignore:
- '*/README.md'
upignore:
- '*/README.md'
instignore:
- '*/README.md'
...
dotfiles:
d_vim
dst: ~/.vim
src: vim
upignore:
- '*/undo-dir'
- '*/plugged'
...
Patterns used for a specific dotfile can be specified relative to the dotfile destination (dst).
Similar to a .gitignore file, you can prefix ignore patterns with an exclamation point (!).
This so-called "negative ignore pattern" will cause any files that match that pattern to not be ignored,
provided they would have been ignored by an earlier ignore pattern (dotdrop will warn if that is not the
case). This feature allows you to, for example, ignore all files within a certain directory, except for a
particular one (See examples below).
To completely ignore comparison of a specific dotfile:
dotfiles:
d_vim
dst: ~/.vim
src: vim
cmpignore:
- '*'
To ignore a specific directory when updating:
dotfiles:
d_colorpicker:
src: config/some_directory
dst: ~/.config/some_directory
upignore:
- '*sub_directory_to_ignore'
To ignore a specific file testfile and directory testdir when importing:
config:
impignore:
- "*/testfile"
- "testdir"
To ignore all files within a certain directory relative to dst, except one called custom_plugin.zsh:
dotfiles:
d_zsh:
src: zsh
dst: ~/.config/zsh
upignore:
- "plugins/*"
- "!plugins/custom_plugin.zsh"
To ignore everything except a single file named file:
dotfiles:
d_dir
src: dir
dst: ~/dir
cmpignore:
- '!file'
- '[a-zA-Z0-9]*'