Mercurial > dotfiles
annotate dot_gitconfig.tmpl @ 801:16d86895ac4b
[pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 ? v4.5.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.4.0...v4.5.0)
- [github.com/JohnnyMorganz/StyLua: v0.18.1 ? v0.19.0](https://github.com/JohnnyMorganz/StyLua/compare/v0.18.1...v0.19.0)
- [github.com/pre-commit/mirrors-prettier: v3.0.2 ? v3.1.0](https://github.com/pre-commit/mirrors-prettier/compare/v3.0.2...v3.1.0)
author | pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> |
---|---|
date | Mon, 13 Nov 2023 18:18:57 +0000 |
parents | abf8938c8c6c |
children | 83bf3561016d |
rev | line source |
---|---|
257 | 1 [user] |
2 email = {{ .email }} | |
3 name = {{ .name }} | |
4 signingkey = {{ .signingkey }} | |
5 [rebase] | |
6 autosquash = true | |
7 autostash = true | |
8 [commit] | |
365
d8216ea00ad1
Do not set gpgsign when no key is configured
zegervdv <zegervdv@me.com>
parents:
279
diff
changeset
|
9 {{- if ne .signingkey "" }} |
257 | 10 gpgsign = true |
365
d8216ea00ad1
Do not set gpgsign when no key is configured
zegervdv <zegervdv@me.com>
parents:
279
diff
changeset
|
11 {{- end }} |
257 | 12 verbose = true |
13 [pull] | |
14 rebase = true | |
15 [gpg] | |
16 program = gpg | |
17 [merge] | |
625 | 18 tool = settle |
19 [mergetool "settle"] | |
20 cmd = "nvim -f $BASE $LOCAL $REMOTE $MERGED -c 'SettleInit'" | |
257 | 21 trustExitCode = true |
22 [alias] | |
23 ls = log --format=\"%C(auto)%h %<(15)%C(auto, green)%cr %>(20)%C(auto, magenta)%an %C(auto)%s %D\" | |
279 | 24 tags = tag -l --sort creatordate --column |
257 | 25 [core] |
26 excludesfile = ~/.gitignore | |
27 editor = nvim | |
28 autocrlf = input | |
29 pager = less -+F | |
30 [help] | |
31 autocorrect = 1 | |
32 [color] | |
33 diff = always | |
34 status = always | |
35 branch = always | |
36 ui = true | |
37 {{- if eq .chezmoi.username "zvandeva" }} | |
38 [url "https://"] | |
39 insteadOf = git:// | |
40 {{- end }} | |
387 | 41 [rerere] |
42 enabled = 1 | |
437
41a48a26b0aa
Add local config path for gitconfig
Zeger Van de Vannet <zegervdv@me.com>
parents:
387
diff
changeset
|
43 [filter "lfs"] |
41a48a26b0aa
Add local config path for gitconfig
Zeger Van de Vannet <zegervdv@me.com>
parents:
387
diff
changeset
|
44 clean = git-lfs clean -- %f |
41a48a26b0aa
Add local config path for gitconfig
Zeger Van de Vannet <zegervdv@me.com>
parents:
387
diff
changeset
|
45 smudge = git-lfs smudge -- %f |
41a48a26b0aa
Add local config path for gitconfig
Zeger Van de Vannet <zegervdv@me.com>
parents:
387
diff
changeset
|
46 process = git-lfs filter-process |
41a48a26b0aa
Add local config path for gitconfig
Zeger Van de Vannet <zegervdv@me.com>
parents:
387
diff
changeset
|
47 required = true |
41a48a26b0aa
Add local config path for gitconfig
Zeger Van de Vannet <zegervdv@me.com>
parents:
387
diff
changeset
|
48 [include] |
41a48a26b0aa
Add local config path for gitconfig
Zeger Van de Vannet <zegervdv@me.com>
parents:
387
diff
changeset
|
49 path = ~/.gitconfig.local |
636 | 50 [diff "gpg"] |
51 textconv = gpg --no-tty --decrypt |