From a4fd431ddc46052f4de1632c4a8a24a739e1e0c3 Mon Sep 17 00:00:00 2001 From: Yuan Chiu Date: Sat, 3 May 2025 20:13:33 +0800 Subject: [PATCH] Fix config --- .chezmoi.toml.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.chezmoi.toml.tmpl b/.chezmoi.toml.tmpl index 92f583f..466a662 100644 --- a/.chezmoi.toml.tmpl +++ b/.chezmoi.toml.tmpl @@ -1,13 +1,13 @@ {{- $name := promptStringOnce . "name" "請輸入您的姓名" -}} {{- $email := promptStringOnce . "email" "輸入您的Email地址" -}} {{- $isServer := promptBoolOnce . "isServer" "Does this machine is Server" -}} -{{- $hasGUI := promptBoolOnce . "hasGUI" "Does this machine have a GUI" -}} -{{- $enableYcm := promptBoolOnce . "enableYcm" "是否要啟用Vim YCM compatible功能(會佔用2.7GB)" -}} +{{- $enableGUI := promptBoolOnce . "enableGUI" "Does this machine have a GUI" -}} +{{- $enableYcm := promptBoolOnce . "enableYcm" "Is enable Vim YCM compatible (Will use 2.7GB)" -}} sourceDir = "~/.local/share/chezmoi" [data] name = {{ $name | quote }} email = {{ $email | quote }} serverStyle = {{ $isServer }} - noGUI = {{ not $hasGUI }} + noGUI = {{ not $enableGUI }} enableYcm = {{ $enableYcm }}