-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
98 lines (98 loc) · 1.8 KB
/
Copy pathgitconfig
File metadata and controls
98 lines (98 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[user]
useConfigOnly = true
email = philipp@steinroetter.com
name = psteinroe
signingkey = ~/.ssh/id_ed25519.pub
[gpg]
format = ssh
[include]
path = ~/.gitconfig.local
[help]
autocorrect = 1
[core]
editor = nvim
excludesfile = ~/.gitignore
legacyheaders = false
whitespace = trailing-space,space-before-tab
pager = delta
[pager]
diff = diffnav
[interactive]
diffFilter = delta --color-only
[add.interactive]
useBuildtin = false
[delta]
navigate = true
light = false
line-numbers = true
side-by-side = true
syntax-theme = Dracula
[alias]
undo = reset --soft HEAD^
next = stack next
prev = stack previous
reword = stack reword
amend = stack amend
run = stack run
[apply]
whitespace = fix
[color]
status = auto
diff = auto
branch = auto
interactive = auto
ui = 1
[push]
default = simple
followTags = true
autoSetupRemote = true
[status]
showUntrackedFiles = all
[commit]
gpgsign = true
[transfer]
fsckobjects = true
[i18n]
commitencoding = UTF-8
logoutputencoding = UTF-8
[repack]
usedeltabaseoffset = true
[branch]
autosetupmerge = true
sort = -authordate
[diff]
algorithm = patience
colorMoved = default
[difftool]
prompt = false
[merge]
conflictstyle = diff3
tool = nvim
[mergetool]
prompt = false
keepBackup = false
[mergetool "nvim"]
cmd = nvim -f -c "Gdiffsplit!" "$MERGED"
[rebase]
autosquash = true
[rerere]
enabled = 1
[fetch]
prune = true
fsckobjects = false
[filter "lfs"]
required = true
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
clean = git-lfs clean -- %f
[pull]
rebase = true
autostash = true
[credential "https://github.com"]
helper =
helper = !gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !gh auth git-credential
[init]
defaultBranch = main