Rust RC file Management commands.
Provides the location of these directories by leveraging the mechanisms defined by
dotfiles ├── rrcm.toml Deploy setting file. ├── home -> $HOME(Linux, macOS), %PROFILE%\AppData\Local(Windows) │ └── .profile ├── config -> $HOME/.config(Linux, macOS), %PROFILE%\AppData\Roaming(Windows) │ ├── fish │ └── tmux └── config_local -> $HOME/.config(Linux, macOS), %PROFILE%\AppData\Local(Windows) └── nvim
sh
cargo install rrcm
sh
rrcm init <path> # dotfiles directory
Default setting ```toml
[deploy.home] windows = '%USERPROFILE%' mac = '${HOME}' linux = '${HOME}'
[deploy.config] windows = '%FOLDERIDRoamingAppData%' mac = '${XDGCONFIGHOME}' linux = '${XDGCONFIG_HOME}'
[deploy.configlocal] windows = '%FOLDERIDLocalAppData%' mac = '${XDGCONFIGHOME}' linux = '${XDGCONFIGHOME}'
```
```sh
rrcm deploy dotfiles/config/* ```