12 lines
499 B
Cheetah
12 lines
499 B
Cheetah
{{- $name := promptStringOnce . "name" "請輸入您的姓名" -}}
|
||
{{- $email := promptStringOnce . "email" "輸入您的Email地址" -}}
|
||
{{- $hasGUI := promptBoolOnce . "hasGUI" "Does this machine have a GUI" -}}
|
||
{{- $enableYcm := promptBoolOnce . "enableYcm" "是否要啟用Vim YCM compatible功能(會佔用2.7GB)" -}}
|
||
sourceDir = "~/.local/share/chezmoi"
|
||
|
||
[data]
|
||
name = {{ $name | quote }}
|
||
email = {{ $email | quote }}
|
||
noGUI = {{ not $hasGUI }}
|
||
enableYcm = {{ $enableYcm }}
|