Put all dotfiles into one "stow package"

This makes installation a lot easier, as we just need to type:

    stow -v dotfiles

instead of installing multiple packages and risking to forget something.
This commit is contained in:
Fernando Schauenburg 2019-02-18 23:16:40 +01:00
parent 817735b658
commit 46efe2b268
18 changed files with 5 additions and 5 deletions

6
.gitignore vendored
View file

@ -1,3 +1,3 @@
vim/.vim/bundle/ dotfiles/.vim/bundle/
vim/.vim/.netrwhist dotfiles/.vim/.netrwhist
vim/.vim/viminfo dotfiles/.vim/viminfo

View file

@ -3,9 +3,9 @@
Install using GNU `stow`: Install using GNU `stow`:
```bash ```bash
cd ~ cd
git clone git@git.schauenburg.me:fernando/dotfiles.git .dotfiles git clone git@git.schauenburg.me:fernando/dotfiles.git .dotfiles
cd .dotfiles cd .dotfiles
stow bash # (and/or bin, dircolors, git, ...) stow dotfiles
``` ```