-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
47 lines (47 loc) · 970 Bytes
/
.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
[user]
email = [email protected]
name = Björn Lindström
[include]
path = .gitconfig.local
[init]
defaultBranch = main
[fetch]
fsckobjects = true
parallel = 10
[pull]
ff = only
[push]
autoSetupRemote = true
[transfer]
fsckobjects = true
[receive]
fsckobjects = true
[merge]
conflictstyle = zdiff3
[rebase]
autosquash = true
[branch]
sort = -committerdate
[tag]
sort = taggerdate
[status]
submoduleSummary = true
[diff]
algorithm = histogram
submodule = log
tool = meld_flatpak
[diff "elisp"]
xfuncname="^\\((((def\\S+)|use-package)\\s+\\S+)"
[diff "org"]
xfuncname="^\\*+ +(.*)$"
[difftool]
prompt = false
[difftool "meld_flatpak"]
cmd = flatpak run --filesystem=/tmp:ro --file-forwarding org.gnome.meld \"@@\" $LOCAL \"@@\" \"@@\" $REMOTE \"@@\"
[alias]
st = status
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process