Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/blakewilliams/dotfiles
- Owner: BlakeWilliams
- Created: 2011-01-26T01:12:41.000Z (almost 14 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T01:30:08.000Z (about 2 months ago)
- Last Synced: 2024-12-15T14:57:09.646Z (19 days ago)
- Language: Vim Script
- Homepage:
- Size: 608 KB
- Stars: 29
- Watchers: 8
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.