-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
51 lines (51 loc) · 1.11 KB
/
Copy pathdot_gitconfig.tmpl
File metadata and controls
51 lines (51 loc) · 1.11 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
[user]
name = Dolf Barr
email = mail@dolf.me
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDdOSFHo7VbBRi8BKvBQTBNY/AyDj/64x/I6OQYSEllQ
[core]
editor = micro
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
light = false
line-numbers = true
[merge]
tool = zed
[mergetool "zed"]
cmd = zed --wait $MERGED
[diff]
tool = zed
[difftool "zed"]
cmd = zed --wait --diff $LOCAL $REMOTE
[alias]
undo = reset --soft HEAD^
stash-all = stash save --include-untracked
loggy = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset'
[push]
default = simple
autoSetupRemote = true
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[init]
defaultBranch = main
[commit]
gpgsign = true
[tag]
gpgSign = true
[pull]
ff = only
[rerere]
enabled = false
[gpg]
format = ssh
[gpg "ssh"]
{{ if eq .chezmoi.os "darwin" }}
program = /Applications/1Password.app/Contents/MacOS/op-ssh-sign
{{ else }}
program = /opt/1Password/op-ssh-sign
{{ end }}