-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.chezmoi.toml.tmpl
44 lines (34 loc) · 935 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{{- $minimal := false -}}
{{- $secrets := false -}}
{{- $name := get . "name" -}}
{{- $email := get . "email" -}}
{{- if (env "MINIMAL") -}}
{{- $minimal = true -}}
{{- end }}
{{- if (env "SECRETS") -}}
{{- $secrets = true -}}
{{- end }}
{{- if (env "ASK") -}}
{{- $name = promptString "Name" -}}
{{- $email = promptString "Email" -}}
{{- end }}
{{- if (or (not $name) (not $email)) -}}
{{- $name = promptString "Name" -}}
{{- $email = promptString "Email" -}}
{{- end -}}
sourceDir = "{{ .chezmoi.homeDir }}/.dotfiles"
[data]
minimal = {{ $minimal }}
secrets = {{ $secrets }}
name = {{ $name | quote }}
email = {{ $email | quote }}
signingkey = "AA59D211400B6FC9"
[data.spicetify]
theme = "Dribbblish"
scheme = "nord-dark"
[data.bitwarden]
tokens = "acd12069-1b34-494a-9162-ad5a00cb6d23"
ssh = "fece7bf2-ac0c-4787-b13a-ad5c0120fd96"
gpg = "777536fd-671b-4267-a788-ad5c012a7d98"
[diff]
pager = "delta"