Mercurial > dotfiles
comparison dot_gitconfig.tmpl @ 257:d726921aaabe
Clean start of dotfiles repo
author | zegervdv <zegervdv@me.com> |
---|---|
date | Thu, 21 May 2020 11:28:36 +0200 |
parents | |
children | 994e456b145e |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 257:d726921aaabe |
---|---|
1 [user] | |
2 email = {{ .email }} | |
3 name = {{ .name }} | |
4 signingkey = {{ .signingkey }} | |
5 [rebase] | |
6 autosquash = true | |
7 autostash = true | |
8 [commit] | |
9 gpgsign = true | |
10 verbose = true | |
11 [pull] | |
12 rebase = true | |
13 [gpg] | |
14 program = gpg | |
15 [merge] | |
16 tool = splice | |
17 [mergetool "splice"] | |
18 cmd = "nvim -f $BASE $LOCAL $REMOTE $MERGED -c 'SpliceInit'" | |
19 trustExitCode = true | |
20 [alias] | |
21 ls = log --format=\"%C(auto)%h %<(15)%C(auto, green)%cr %>(20)%C(auto, magenta)%an %C(auto)%s %D\" | |
22 [core] | |
23 excludesfile = ~/.gitignore | |
24 editor = nvim | |
25 autocrlf = input | |
26 pager = less -+F | |
27 [help] | |
28 autocorrect = 1 | |
29 [color] | |
30 diff = always | |
31 status = always | |
32 branch = always | |
33 ui = true | |
34 {{- if eq .chezmoi.username "zvandeva" }} | |
35 [url "https://"] | |
36 insteadOf = git:// | |
37 {{- end }} |