dots/README.md

21 lines
1.1 KiB
Markdown
Raw Normal View History

# dot/dots
2016-10-03 21:41:40 -04:00
2016-10-03 21:46:40 -04:00
A fast and easy bootstrap for my dotfiles that also acts as a simple management script once installed. Bootstrapping is as simple as:
2016-10-03 21:41:40 -04:00
2016-10-03 21:46:40 -04:00
```zsh
curl https://dots.00dani.me | zsh
2016-10-03 21:46:40 -04:00
```
If you're wary about piping scripts into your shell - [you should be](https://www.seancassidy.me/dont-pipe-to-your-shell.html) - then feel free to download the script and check it out first. `dots` *is* [designed to crash harmlessly](https://dots.00dani.me/partial-dl-test) rather than run something dangerous if `curl` is interrupted, however.
```zsh
curl https://dots.00dani.me > dots
less dots
# reviewing ... looks okay!
zsh dots
```
2020-06-17 21:49:21 -04:00
When run through either of these methods, `dots` will install itself, [GNU Stow](https://www.gnu.org/software/stow/) (if not already installed globally), and my configuration for [git](https://git.00dani.me/dot/git), [vim](https://git.00dani.me/dot/vim), and [zsh](https://git.00dani.me/dot/zsh).
2016-10-03 21:46:40 -04:00
Packages are installed by `dots` to `~/dotfiles` and then linked into `~` using Stow. I'll be adding flags for customising these paths, as well as adjusting which packages the bootstrap immediately installs.