-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitconfig
72 lines (59 loc) · 1.17 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
64
65
66
67
68
69
70
71
72
[core]
excludesfile = ~/.gitignore
; pager = delta
editor = nvim
; [interactive]
; diffFilter = delta --color-only
; [delta]
; navigate = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[user]
name = artemave
email = [email protected]
signingkey = ED8C1283
[alias]
st = status
ci = commit
co = checkout
di = diff
dc = diff --cached
ds = diff --stat=160,120
bc = !git branch --sort=-committerdate | fzf | xargs git checkout
recent = branch --sort=-committerdate --format="%(committerdate:relative)%09%(refname:short)"
dft = difftool
[pager]
difftool = true
; [diff]
; tool = difftastic
; external = difft
; [difftool]
; prompt = false
; [difftool "difftastic"]
; cmd = difft "$LOCAL" "$REMOTE"
[color]
ui = auto
[merge]
tool = vimdiff
[mergetool "vimdiff"]
path = nvim
[pull]
rebase = true
[push]
default = simple
autoSetupRemote = true
[commit]
template = ~/.gitmessage
; gpgsign = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main
[credential]
credentialStore = gpg
helper = manager