Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cvan/dotfiles
https://github.com/cvan/dotfiles
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cvan/dotfiles
- Owner: cvan
- Created: 2011-07-03T06:26:08.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2020-06-02T22:04:38.000Z (over 4 years ago)
- Last Synced: 2025-01-29T18:02:41.800Z (9 days ago)
- Language: Vim script
- Homepage:
- Size: 153 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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