-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitconfig
More file actions
57 lines (43 loc) · 1.15 KB
/
.gitconfig
File metadata and controls
57 lines (43 loc) · 1.15 KB
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
[user]
email = 117413846+av1155@users.noreply.github.com
name = av1155
# signingkey = [Your GPG Key ID]
[core]
editor = sh -c 'command -v nvim >/dev/null 2>&1 && echo \"nvim\" || command -v code --wait >/dev/null 2>&1 && echo \"code --wait\" || echo \"vi\"'
autocrlf = input
excludesfile = ~/.gitignore_global
pager = delta
[alias]
count = !git ls-remote --heads origin | wc -l
lg = log --graph --oneline --decorate --all
[color]
ui = auto
status = auto
branch = auto
diff = auto
[init]
defaultBranch = main
[push]
default = current
[merge]
conflictStyle = diff3
[rebase]
autosquash = true
[pull]
rebase = false
[diff]
algorithm = histogram
colorMoved = default
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
side-by-side = false
# delta detects terminal colors automatically; set one of these to disable auto-detection
# dark = true
# light = true