An open API service indexing awesome lists of open source software.

https://github.com/cvan/dotfiles


https://github.com/cvan/dotfiles

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# dotfiles

My `.` files.

## Installation

1. Clone the repo:

git clone git@github.com:cvan/dotfiles.git ~/.dotfiles/

2. Set up symlinks. Using zsh:

for f (~/.dotfiles/.*) { ln -s $f ~/`basename $f` }

Using bash:

for f in ~/.dotfiles/.*; do ln -s $f ~/`basename $f`; done