Simple utility to manage a list of symlinks so you can centralize your config files in a repo and symlink to them.
slmap
Note: the links are relative to where the slmap command is run. Paths are interpretted with shell variables and ~
Future goals: - actually handling permissions - error handling nicely vs just panics - checking in a new file to the map - swap out the txt into the repository and update the map -
file format:
```toml
[filename]
target = 'path/to/file'
link_name = 'path/to/file'
root = true/false
[zshrc]
target = 'config/zshrc'
link_name = 'test/.zshrc'
[vimrc]
target = 'config/vimrc'
link_name = 'test/.vimrc'
[folder]
target = 'config/folder'
link_name = 'test/folder'
[motd] target = 'config/motd' link_name = '/etc/motd' root = true ```