rename files -> config

This commit is contained in:
James Dixon 2022-05-10 19:56:47 -04:00
parent d127ed39a6
commit 6da8159ba2
19 changed files with 4 additions and 5 deletions

View File

@ -32,8 +32,7 @@ brew install stow
## Cloning this repo ## Cloning this repo
```bash ```bash
git clone https://github.com/lemonase/dotfiles.git git clone https://github.com/lemonase/dotfiles.git && cd dotfiles/config
cd dotfiles/files
``` ```
## Using `stow` ## Using `stow`
@ -41,19 +40,19 @@ cd dotfiles/files
### Installing symlinks ### Installing symlinks
```bash ```bash
stow --target="$HOME" * stow -t "$HOME" -S *
``` ```
### Uninstalling symlinks ### Uninstalling symlinks
```bash ```bash
stow --delete * stow -t "$HOME" -D *
``` ```
### Repairing symlinks ### Repairing symlinks
```bash ```bash
stow --restow * stow -t "$HOME" -R *
``` ```
If there are no errors, everything in that directory should be symlinked. If there are no errors, everything in that directory should be symlinked.