-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
63 lines (63 loc) · 1.25 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
53
54
55
56
57
58
59
60
61
62
63
[user]
email = [email protected]
name = Rhett Bulkley
signingkey = A9CAC1D14680E0D4
[commit]
gpgsign = true
[init]
defaultBranch = main
[merge]
tool = nvim
conflictstyle = diff3
[mergetool "nvim"]
cmd = nvim -f -c \"Gdiff\" \"$MERGED\"
[core]
editor = nvim
excludesfile = /Users/jaybulk/.config/.gitignore_global
pager = delta
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[delta]
line-numbers = true
syntax-theme = gruvbox
side-by-side = false
navigate = true
light = false
[interactive]
diffFilter = delta --color-only
[color]
ui = true
[alias]
farse = force --force-with-lease
co = checkout
branch = switch
br = switch
ct = commit
st = status
sta = status
stat = status
rev-pasre = rev-parse
rev-pares = rev-parse
rev-prase = rev-parse
rt = rev-parse --top-level
fault = blame -w -C -C -C -L
[diff]
colorMoved = default
[includeIf "gitdir:~/work/"]
path = ~/work/.gitconfig
[includeIf "gitdir:~/dev/"]
path = ~/dev/.gitconfig
[includeIf "gitdir:~/oss/"]
path = ~/oss/.gitconfig
[rerere]
enabled = true
[column]
ui = auto
[branch]
sort = -committerdate
[maintenance]
auto = false
strategy = incremental