-
Notifications
You must be signed in to change notification settings - Fork 25
Configuration
Thomas Versteeg edited this page Jan 2, 2021
·
2 revisions
After running emplace for the first time a configuration file (emplace.toml
) is created in at the following directories:
Platform | Value | Example |
---|---|---|
Linux |
$XDG_CONFIG_HOME or $HOME/.config
|
/home/alice/.config/emplace.toml |
macOS | $HOME/Library/Preferences |
/Users/Alice/Library/Preferences/emplace.toml |
Windows | {FOLDERID_RoamingAppData} |
C:\Users\Alice\AppData\Roaming\emplace.toml |
The following example will clone the master branch of Alice's 'dotfiles' git repository to ~/.local/share/emplace
.
repo_directory = "/home/alice/.local/share/emplace"
[repo]
url = "[email protected]:alice/dotfiles.git"
branch = "master"
file = ".emplace"