Skip to content

jessfraz/dotfiles

master
Switch branches/tags
Code

Latest commit

Signed-off-by: Jess Frazelle <github@jessfraz.com>
aeef267

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
Sep 12, 2019
Dec 2, 2019
May 18, 2020
Nov 9, 2021
.i3
Jun 4, 2020
Jan 21, 2017
Aug 22, 2016
bin
fix
Feb 26, 2021
etc
fix
Jun 5, 2020
Jun 11, 2015
Oct 18, 2016
Oct 30, 2021
Dec 6, 2019
Dec 11, 2021
Apr 28, 2022
Jun 21, 2020
Mar 27, 2021
Jun 10, 2015
Jun 6, 2015
Aug 17, 2015
Dec 28, 2021
Dec 2, 2018
Jun 21, 2020
May 18, 2020
fix
Apr 26, 2021

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