Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pixelhandler/dotfiles
Pixelhandler's dotfiles and some dev setup scripts
https://github.com/pixelhandler/dotfiles
dotfiles
Last synced: 8 days ago
JSON representation
Pixelhandler's dotfiles and some dev setup scripts
- Host: GitHub
- URL: https://github.com/pixelhandler/dotfiles
- Owner: pixelhandler
- License: mit
- Created: 2017-01-03T06:39:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-17T22:28:25.000Z (8 months ago)
- Last Synced: 2024-10-30T12:25:29.954Z (about 2 months ago)
- Topics: dotfiles
- Language: Vim script
- Size: 1.11 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Pixelhandler's Dotfiles
Inspired by and borrowed from https://github.com/mathiasbynens/dotfiles
## Installation
**Warning:** If you want to give these dotfiles a try, you should first fork
this repository, review the code, and remove things you don’t want or need.
Don’t blindly use my settings. Use at your own risk!### Using Git and the bootstrap script
You can clone the repository wherever you want (I like `~/dotfiles`).
The bootstrapper script will pull in the latest version and copy the files to
your home folder.```bash
git clone https://github.com/pixelhandler/dotfiles.git ~/.dotfiles && 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/pixelhandler/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,bootstrap.sh,LICENSE.txt}
```To update later on, just run that command again.
### User bin
The `bin` directory has some tools and scripts, e.g. `z.sh` and install
script for Homebrew, NVM, pyenv, etc.### Install Homebrew formulae
When setting up a new Mac, you may want to install some common [Homebrew] formulae:
```bash
./bin/brew.sh
```
[Homebrew]: http://brew.sh/## Thanks to
- https://github.com/mathiasbynens/dotfiles
- https://github.com/toranb/dotfiles