Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 666 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 666 Bytes

dotfiles

Setup for Homebrew packages and my personal dotfiles. Works on *nix, optimized for macOS.

About

Installing

make

This will create symlinks from this repository to your home directory.

Customizing

Save env vars, etc in a .extra file that looks something like this:

###
### Git credentials
###

GIT_AUTHOR_NAME="Your Name"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
git config --global user.name "$GIT_AUTHOR_NAME"

GIT_AUTHOR_EMAIL="[email protected]"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git config --global user.email "$GIT_AUTHOR_EMAIL"

GH_USER="nickname"
git config --global github.user "$GH_USER"