-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.chezmoi.toml.tmpl
25 lines (21 loc) · 1012 Bytes
/
.chezmoi.toml.tmpl
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
{{- $choices := list "desktop" "server" -}}
{{- $hosttype := promptChoiceOnce . "hosttype" "What type of host are you on" $choices "server" -}}
{{- $gitname := promptStringOnce . "gitname" "Git Name" "oliver ding" -}}
{{- $gitmail := promptStringOnce . "gitmail" "Git Mail Address" "oliverdding@outlook.com" -}}
{{- $gpgagent := promptBoolOnce . "gpgagent" "Use gnupg agent instead of ssh agent? [Y/n]" false -}}
{{- $pass := promptBoolOnce . "pass" "Clone pass store? [Y/n]" false -}}
encryption = "gpg"
[gpg]
recipient = "oliverdding@outlook.com"
args = [ "--quiet" ]
[data]
gitname = {{ $gitname | quote }}
gitmail = {{ $gitmail | quote }}
hosttype = {{ $hosttype | quote }}
gpgagent = {{ $gpgagent }}
pass = {{ $pass }}
[diff]
command = "delta"
pager = "less"
args = [ "--paging", "never" ]
exclude = [ "dirs", "scripts" ]