We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a82b253 commit aadbcfbCopy full SHA for aadbcfb
README.md
@@ -17,14 +17,14 @@ cd dotfiles/ # important
17
Then for each application that you want to have configured like mine, stow its directory
18
19
```bash
20
-stow nvim
21
-stow sqlite
+stow --target="$HOME" nvim
+stow --target="$HOME" sqlite
22
```
23
24
Or if you want to copy all my configs and are feeling lazy like me, use:
25
26
27
-find . -maxdepth 1 -type d -name '[!.]*' -exec stow '{}' \;
+find . -maxdepth 1 -type d -name '[!.]*' -exec stow --target="$HOME" '{}' \;
28
29
30
This will run `stow` for every directory under `dotfiles/`.
0 commit comments