Skip to content

jessfraz/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jan 22, 2025
6328a31 · Jan 22, 2025
Jan 22, 2025
Dec 2, 2019
May 18, 2020
Nov 9, 2021
Jun 24, 2023
Jan 21, 2017
Aug 22, 2016
Jun 23, 2023
Jun 5, 2020
Jun 4, 2020
Jun 11, 2015
Oct 18, 2016
Jun 23, 2023
Oct 30, 2021
Jan 22, 2025
Jan 22, 2025
Jan 22, 2025
Oct 23, 2024
Jun 21, 2020
Mar 27, 2021
Dec 7, 2024
Dec 19, 2018
Jun 10, 2015
Jun 6, 2015
Aug 17, 2015
Jan 22, 2025
Dec 31, 2015
Dec 16, 2017
Apr 24, 2017
Dec 2, 2018
Jun 21, 2020
May 18, 2020
Jul 4, 2018
Jun 23, 2023
Jan 2, 2019

Repository files navigation

dotfiles

make test

Table of Contents

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
###

GIT_AUTHOR_NAME="Your Name"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
git config --global user.name "$GIT_AUTHOR_NAME"
GIT_AUTHOR_EMAIL="email@you.com"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git config --global user.email "$GIT_AUTHOR_EMAIL"
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