-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
59 lines (46 loc) · 973 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
48
49
50
51
52
53
54
55
56
57
58
59
[alias]
s = status
c = commit --verbose
d = diff
ds = diff --staged
co = checkout
l = log --graph --pretty=format:\"%C(yellow)%h%C(black)%C(auto)%d%x20%s%x20%x28%an%x29\"
[user]
email = [email protected]
name = Toban Wiebe
[github]
user = tobanw
[core]
editor = nvim
excludesfile = ~/.config/git/ignore
whitespace = trailing-space,space-before-tab
[color]
ui = auto
[push]
default = simple
[filter "lfs"]
smudge = git-lfs smudge -- %f
required = true
clean = git-lfs clean -- %f
process = git-lfs filter-process
# git pull rebases without flattening local merges
# (instead of branch.autosetuprebase = always)
[pull]
rebase = merges
# show info about submodules
[status]
submoduleSummary = true
[diff]
submodule = log
tool = vimdiff
mnemonicprefix = true
[merge]
tool = vimdiff
ff = false # no-ff: always create a merge commit
stat = true
[difftool "vimdiff"]
path = nvim
[mergetool "vimdiff"]
path = nvim
[difftool]
prompt = false