-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
33 lines (33 loc) · 737 Bytes
/
.gitconfig
File metadata and controls
33 lines (33 loc) · 737 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
[user]
name = Ricky Nelson
email = rickyn@socketwiz.com
[core]
editor = nvim
excludesfile = ~/.gitignore_global
askpass = git-gui--askpass
[color]
ui = true
[diff]
tool = default-difftool
[merge]
tool = default-difftool
conflictstyle = diff3
[difftool "default-difftool"]
cmd = default-difftool.sh $LOCAL $REMOTE
[difftool]
prompt = false
[include]
path = ~/.gitconfig.local
[pull]
rebase = true
[init]
defaultBranch = main
[includeIf "gitdir:~/dev/rust/"]
path = ~/.gitconfig.zolmok
[includeIf "gitdir:~/dev/sorcero-*/"]
path = ~/.gitconfig.work
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f