Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/blakewilliams/dotfiles

My dotfiles. Decently documented.
https://github.com/blakewilliams/dotfiles

Last synced: 16 days ago
JSON representation

My dotfiles. Decently documented.

Awesome Lists containing this project

README

        

# My Dotfiles

This is my dotfiles repo which contains *most* of the configuration that I use
day to day to get things done.

Most files are decently documented.

## Setup / Usage

```bash
./script/setup
```

## System specific zsh includes

Different ststems often have different setups. For example one machine might
have `nvm`, and `rbenv` but another might only have `chruby` and no `nvm`. To
get around this the following line is included in `zshrc`:

```bash
for function in ~/.zsh/*; do
source $function
done
```

This loop in combination with `gitignore` ignoring all files in the `.zsh`
directory we can add any system specific scripts for and they'll be sourced.