-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
52 lines (48 loc) · 1.07 KB
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[user]
name = Drew Silcock
email = [email protected]
signingkey = B445BCFA63263720
[core]
editor = vim -f
[alias]
up = pull --rebase --autostash
graph = log --graph --date=relative --branches --all
short-graph = log --graph --oneline --date=relative --branches --all
[commit]
gpgsign = true
[diff]
tool = bc3
[merge]
tool = bc3
ff = no
[mergetool "bc3"]
trustExitCode = true
[gpg]
program = /opt/homebrew/bin/gpg
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[interactive]
diffFilter = delta --color-only
[delta]
features = side-by-side line-numbers decorations
whitespace-error-style = 22 reverse
syntax-theme = Monokai Extended
navigate = true
plus-style = "syntax #012800"
minus-style = "syntax #340001"
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
[init]
defaultBranch = main
[pull]
ff = only