Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamvery/dotfiles
~/
https://github.com/iamvery/dotfiles
Last synced: 13 days ago
JSON representation
~/
- Host: GitHub
- URL: https://github.com/iamvery/dotfiles
- Owner: iamvery
- Created: 2013-01-15T16:22:52.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-09-26T18:40:46.000Z (about 2 months ago)
- Last Synced: 2024-10-29T21:58:56.770Z (15 days ago)
- Language: Vim Script
- Homepage:
- Size: 412 KB
- Stars: 15
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ~/
My home directory is a git repository. You're looking at it. This complicates
installation just a bit because you can't simply clone the repository as your
home directly likely already exists. For that reason, you must init an empty
repo, add the remote, and pull down all the goodness. Enjoy!## Installation
```bash
$ git init
$ git remote add origin [email protected]:iamvery/dotfiles.git
$ git pull origin master
$ git submodule init
$ git submodule update
$ bin/bootstrap
```## Updating
```bash
$ git pull
$ git submodule foreach git pull origin master
```