https://github.com/cvan/dotfiles
https://github.com/cvan/dotfiles
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cvan/dotfiles
- Owner: cvan
- Created: 2011-07-03T06:26:08.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2020-06-02T22:04:38.000Z (about 6 years ago)
- Last Synced: 2025-03-24T09:50:18.274Z (about 1 year ago)
- Language: Vim script
- Homepage:
- Size: 153 KB
- Stars: 1
- Watchers: 1
- 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 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