-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
56 lines (56 loc) · 1.33 KB
/
dot_gitconfig.tmpl
File metadata and controls
56 lines (56 loc) · 1.33 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]
name = Pierce Thompson
email = pierce@insprill.net
signingkey = A573025900BEAA00!
[commit]
gpgsign = true
[init]
defaultBranch = master
[reset]
quiet = true
[tag]
gpgsign = true
{{ if ne .chezmoi.os "windows" }}
[credential]
helper = /usr/lib/git-core/git-credential-libsecret
credentialStore = gpg
{{ end }}
[core]
{{ if ne .chezmoi.os "windows" }}
editor = nvim
{{ else }}
editor = neovide
{{ end }}
autocrlf = input
fsmonitor = true
untrackedcache = true
[push]
autoSetupRemote = true
[pull]
rebase = true
[diff]
wsErrorHighlight = all
[merge]
tool = unityyamlmerge
[mergetool]
keepBackup = false
[mergetool "unityyamlmerge"]
trustExitCode = false
{{ if ne .chezmoi.os "windows" }}
cmd = '/home/insprill/.local/share/Unity/Hub/Editor/2019.4.41f1/Editor/Data/Tools/UnityYAMLMerge' merge -p "$BASE" "$REMOTE" "$LOCAL" "$MERGED"
{{ else }}
cmd = 'C:/Program Files/Unity/Hub/Editor/2019.4.40f1/Editor/Data/Tools/UnityYAMLMerge.exe' merge -p "$BASE" "$REMOTE" "$LOCAL" "$MERGED"
{{ end }}
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
{{ if ne .chezmoi.os "windows" }}
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
{{ end }}