blob: 6d9ff1e8c587a3bb96d840bb8daf6f5d388c8d4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# dotfiles
Managed with [GNU Stow](https://www.gnu.org/software/stow/).
Each top-level directory is a stow *package* whose contents mirror the layout under `$HOME`.
## Install
This repo lives outside `$HOME`, so pass the target explicitly:
```sh
cd ~/git/dotfiles
stow -t "$HOME" bash emacs mako
```
## Remove
```sh
cd ~/git/dotfiles
stow -D -t "$HOME" bash emacs mako
```
## Restow (after moving/renaming files)
```sh
stow -R -t "$HOME" bash emacs mako
```
|