-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
45 lines (39 loc) · 726 Bytes
/
Copy path.gitconfig
File metadata and controls
45 lines (39 loc) · 726 Bytes
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
[user]
name = Daniil Shvalov
email = shvalovich@gmail.com
[core]
excludesfile = ./.gitignore
pager = "nvim -R -"
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[diff]
tool = nvimdiff
[mergetool "nvimdiff"]
cmd = nvim -f -d $LOCAL $REMOTE
[mergetool]
keepBackup = false
trustExitCode = true
[color]
ui = false
branch = true
diff = false
interactive = false
status = true
log = false
[init]
defaultBranch = main
[alias]
st = status
co = checkout
ci = commit
df = difftool
dfs = difftool --staged
l = -c color.ui=false log
[difftool]
prompt = false
trustExitCode = true
[push]
default = current