repos / dotfiles

my dotfiles

commit
7df1b2f
parent
fd3a5f2
author
Eric Bower
date
2026-02-20 20:44:04 -0500 EST
chore: update git config
1 files changed,  +21, -28
M dot/gitconfig
+21, -28
 1@@ -1,39 +1,32 @@
 2 [user]
 3-	signingkey = 7A51A47D76D3FD02
 4-	name = Eric Bower
 5-	email = me@erock.io
 6+    name = Eric Bower
 7+    email = me@erock.io
 8 [gpg]
 9-	program = gpg2
10+    program = gpg2
11 [pull]
12-  rebase = true
13-[sendemail]
14-	smtpserver = smtp.fastmail.com
15-	smtpuser = me@erock.io
16-	smtpencryption = tls
17-	smtpserverport = 587
18-	annotate = yes
19+    rebase = true
20 [init]
21-  defaultBranch = main
22+    defaultBranch = main
23 [diff]
24-  renames = true
25+    renames = true
26 [format]
27-  useAutoBase = whenAble
28+    useAutoBase = whenAble
29 [core]
30-  pager = delta
31+    pager = delta
32 [interactive]
33-  diffFilter = delta --color-only
34+    diffFilter = delta --color-only
35 [delta]
36-  navigate = true    # use n and N to move between diff sections
37-  # side-by-side = true
38-  dark = true
39+    navigate = true # use n and N to move between diff sections
40+    # side-by-side = true
41+    dark = true
42 [merge]
43-  conflictStyle = zdiff3
44+    conflictStyle = zdiff3
45 [alias]
46-  u = remote update --prune
47-  a = add -A
48-  m = commit -S
49-  s = commit -S --amend --no-edit
50-  l = !git --no-pager log --oneline -n 15
51-  t = log --graph --oneline --all
52-  mo = merge origin/main
53-  ro = rebase -i origin/main
54+    u = remote update --prune
55+    a = add -A
56+    m = commit -S
57+    s = commit -S --amend --no-edit
58+    l = !git --no-pager log --oneline -n 15
59+    t = log --graph --oneline --all
60+    mo = merge origin/main
61+    ro = rebase -i origin/main