Update README with git recursion

This commit is contained in:
Shaun Reed 2019-11-17 14:00:48 -05:00
parent bb2304ff22
commit 63b85d22a5
1 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
# dots
A place for backing up my dotfiles.
A place for backing up my dotfiles. Be sure to clone recursively if you want to grab updated plugins / submodules included. For example, using Pathogen with Vim to manage plugins requires that the plugin to be installed are cloned to the `~/.vim/bundle/` directory. Cloning recursively allows git to clone these same nested repositories/submodules within this directory so Pathogen can handle running the Vim plugins.
These configs were created and tested on Manjaro Linux using i3wm, and should only be used on similar systems. Easiest installation is to clone repository into home directory -
```bash
git clone https://github.com/shaunrd0/dot ~/dot
git clone --recursive https://github.com/shaunrd0/dot ~/dot
cd ~/dot/
stow .
```
@ -14,7 +14,7 @@ stow .
If you'd rather clone elsewhere -
```bash
git clone https://github.com/shaunrd0/dot /path/to/dot
git clone --recursive https://github.com/shaunrd0/dot /path/to/dot
cd /path/to/dot/
stow -t ~ .
```