https://github.com/karan/dotfiles
~/* - all my dotfiles with bootstrapping script. 10X productivity gains. :heart:
https://github.com/karan/dotfiles
Last synced: 9 months ago
JSON representation
~/* - all my dotfiles with bootstrapping script. 10X productivity gains. :heart:
- Host: GitHub
- URL: https://github.com/karan/dotfiles
- Owner: karan
- License: mit
- Created: 2013-10-17T16:54:28.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2022-06-04T00:13:15.000Z (over 3 years ago)
- Last Synced: 2025-04-04T23:29:49.409Z (9 months ago)
- Language: Shell
- Homepage: http://karan.github.io/dotfiles
- Size: 10.6 MB
- Stars: 41
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Karan's dotfiles
## Installation
### Using Git and the bootstrap script
You can clone the repository wherever you want. The bootstrapper script will pull in the latest version and copy the files to your home folder.
```bash
git clone https://github.com/karan/dotfiles.git && cd dotfiles && source bootstrap.sh
```
To update, `cd` into your local `dotfiles` repository and then:
```bash
source bootstrap.sh
```
Alternatively, to update while avoiding the confirmation prompt:
```bash
set -- -f; source bootstrap.sh
```
### Git-free install
To install these dotfiles without Git:
```bash
cd; curl -#L https://github.com/karan/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,bootstrap.sh,LICENSE-MIT.txt}
```
To update later on, just run that command again.
### Install Homebrew formulae
When setting up a new Mac, you may want to install some common [Homebrew](http://brew.sh/) formulae (after installing Homebrew, of course):
```bash
./brew.sh
```