2022-09-13 15:37:45 +02:00
|
|
|
# Filename: $HOME/.gitconfig
|
|
|
|
# Purpose: config for git(1)
|
|
|
|
# Author: Jeffrey Serio <hyperreal@fedoraproject.org>
|
|
|
|
# License: GPL v3
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
[format]
|
|
|
|
numbered = auto
|
|
|
|
|
|
|
|
[color]
|
|
|
|
branch = yes
|
|
|
|
diff = auto
|
|
|
|
pager = yes
|
|
|
|
status = auto
|
|
|
|
[color "branch"]
|
|
|
|
current = green
|
|
|
|
local = yellow
|
|
|
|
remote = cyan
|
|
|
|
[color "diff"]
|
|
|
|
meta = yellow
|
|
|
|
frag = magenta
|
|
|
|
old = red
|
|
|
|
new = green
|
|
|
|
[color "status"]
|
|
|
|
header = magenta
|
|
|
|
added = green
|
|
|
|
changed = yellow
|
|
|
|
untracked = cyan
|
2022-02-10 18:40:12 +01:00
|
|
|
[commit]
|
|
|
|
[core]
|
|
|
|
editor = nvim
|
|
|
|
[init]
|
|
|
|
defaultBranch = main
|
|
|
|
[pull]
|
|
|
|
rebase = true
|
|
|
|
[user]
|
2022-07-07 18:32:27 +02:00
|
|
|
email = 23226432+hyperreal64@users.noreply.github.com
|
2022-02-10 18:40:12 +01:00
|
|
|
name = Jeffrey Serio
|
|
|
|
[global]
|
|
|
|
|
2022-09-13 15:37:45 +02:00
|
|
|
# vim:ft=gitconfig ai et sw=4 ts=4:
|