This repository provides dotfiles command to manage your dotfiles. It manages your dotfiles repository and symbolic links to use the configurations.
This command has below goals:
- One binary executable: If you want to set configuration files in a remote server, all you have to do is sending a binary to the remote.
- Do one thing and do it well: This command manages only a dotfiles repository. Does not handle any other dependencies. If you want full-setup including dependencies, you should use more suitable tool such as Ansible. And then use
dotfilescommand from it. - Less dependency: Only depends on
gitcommand. - Sensible defaults: Many sensible default symbolic link mappings are pre-defined. You need not to specify the mappings for almost all configuration files.
Note: My dotfiles is here
- Download a released executable and put it in
$PATHor$ go install github.com/rhysd/dotfiles. - Change current directory to the directory you want to put a dotfiles repository.
- Clone your dotfiles repository with
$ dotfiles clone. - Enter the repository and run
$ dotfiles link --dryto check which symlinks will be generated. - Write
.dotfiles/mappings.jsonif needed. $ dotfiles link- After you no longer need your configuration, remove all links with
$ dotfiles clean.
$ dotfiles {subcommand} [arguments]
Clone your dotfiles repository from remote.
# Clone [email protected]:rhysd/dotfiles.git into current directory
$ dotfiles clone rhysd
# Clone https://github.com/rhysd/dotfiles.git into current directory
$ dotfiles clone rhysd --https
# You can explicitly specify the repository name
$ dotfiles clone rhysd/dogfiles
# You can also use full-path
$ dotfiles clone [email protected]:rhysd/dotfiles.git
$ dotfiles clone https://your.site.com/dotfiles.gitSet symbolic links to put your configuration files into proper places.
$ dotfiles link [options] [files...]You can dry-run this command with --dry option.
If some files in dotfiles repository are specified, only they will be linked.
Show all links set by this command.
$ dotfiles listRemove all symbolic link put by dotfiles link.
$ dotfiles cleangit pull your dotfiles repository from anywhere.
$ dotfiles updateUpdate dotfiles binary (or dotfiles.exe on Windows) itself.
$ dotfiles selfupdateIt depends on your platform. Please see source code.
dotfiles command has sensible default mappings from configuration files in dotfiles repository to symbolic links put by dotfiles link. And you can flexibly specify the mappings for your dotfiles manner. Please create a .dotfiles directory and put a .dotfiles/mappings.json file in the root of your dotfiles repository.
Below is an example of mappings.json. You can use ~ to represent a home directory. As key, you can specify a name of file or directory in your dotfiles repository. They will be linked to the corresponding values as symbolic links.
{
"gitignore": "~/.global.gitignore",
"cabal_config": "~/.cabal/config"
}In addition, you can define platform specific mappings with below mappings JSON files.
.dotfiles/mappings_unixlike.json: Will link the mappings in Linux or macOS..dotfiles/mappings_linux.json: Will link the mappings in Linux..dotfiles/mappings_darwin.json: Will link the mappings in macOS..dotfiles/mappings_windows.json: Will link the mappings in Windows.
Below is an example of .dotfiles/mappings_darwin.json.
{
"keyremap4macbook.xml": "~/Library/Application Support/Karabiner/private.xml",
"mac.vimrc": "~/.mac.vimrc"
}Values of the mappings object are basically strings representing destination paths, but they also can be arrays of strings. In the case, multiple symbolic links will be created for the source file.
For example, the following configuration will make two symbolic links ~/.vimrc and ~/.config/nvim/init.vim for vimrc source file.
{
"vimrc": ["~/.vimrc", "~/.config/nvim/init.vim"]
}Real world example is my dotfiles.
Licensed under the MIT license.