My dotfiles. Buyer beware ;)
Last updated Jul 8, 2026
3.6k
Stars
512
Forks
1
Issues
0
Stars/day
Attention Score
97
Language breakdown
No language data available.
▸ Files
click to expand
README
dotfiles
Table of Contents
* Installing * Customizing *.vim
* Running the tests
About
Installing
$ make
This will create symlinks from this repo to your home folder.
Customizing
Save env vars, etc in a .extra file, that looks something like this:
###
Git credentials
###
GITAUTHORNAME="Your Name" GITCOMMITTERNAME="$GITAUTHORNAME" git config --global user.name "$GITAUTHORNAME" GITAUTHOREMAIL="email@you.com" GITCOMMITTEREMAIL="$GITAUTHOREMAIL" git config --global user.email "$GITAUTHOREMAIL" GH_USER="nickname" git config --global github.user "$GH_USER"
###
Gmail credentials for mutt
### export GMAIL=email@you.com export GMAIL_NAME="Your Name" export GMAIL_FROM=from-email@you.com
Resources
.vim
For my .vimrc and .vim dotfiles see github.com/jessfraz/.vim.
Contributing
Running the tests
The tests use shellcheck. You don't need to install anything. They run in a container.
$ make test🔗 More in this category