24 lines
383 B
Markdown
24 lines
383 B
Markdown
# dotfiles
|
|
|
|
Designed around [GNU stow][gnu stow manual].
|
|
For `zsh` or `bash` (or both). Include `shell/` always.
|
|
|
|
## Install
|
|
|
|
```sh
|
|
git clone <repo> ~/.dotfiles
|
|
cd ~/.dotfiles
|
|
stow shell zsh # or: stow shell bash
|
|
```
|
|
|
|
## Update
|
|
|
|
```sh
|
|
cd ~/.dotfiles
|
|
git pull
|
|
stow -R shell zsh # restow this host's packages
|
|
```
|
|
|
|
[gnu stow manual]: https://www.gnu.org/software/stow/manual/stow.html
|
|
|