-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
39 lines (39 loc) · 870 Bytes
/
Copy pathdot_gitconfig.tmpl
File metadata and controls
39 lines (39 loc) · 870 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
34
35
36
37
38
39
[user]
name = papatenko
email = justinkondratenko@proton.me
[core]
editor = nvim
pager = delta
[init]
defaultBranch = main
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
line-numbers = true
side-by-side = true
syntax-theme = base16
[merge]
conflictstyle = zdiff3
[diff]
algorithm = histogram
colorMoved = default
[push]
autoSetupRemote = true
followTags = true
[pull]
rebase = true
[rerere]
enabled = true
[fetch]
prune = true
[alias]
lg = log --oneline --graph --decorate --all
undo = reset --soft HEAD~1
amend = commit --amend --no-edit
[credential "https://github.com"]
helper =
helper = !{{ if eq .chezmoi.os "windows" }}gh{{ else }}/usr/bin/gh{{ end }} auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !{{ if eq .chezmoi.os "windows" }}gh{{ else }}/usr/bin/gh{{ end }} auth git-credential