Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cvan/dotfiles


https://github.com/cvan/dotfiles

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

        

# dotfiles

My `.` files.

## Installation

1. Clone the repo:

git clone [email protected]: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