1
0
This commit is contained in:
2025-07-29 01:05:13 +02:00
parent 98cad4fe2c
commit 5106bd4ac8
2 changed files with 13 additions and 1 deletions

View File

@@ -6,7 +6,9 @@ command = "meld"
{{ $signinkey := promptStringOnce . "signingkey" "What is your git signing key " }}
{{ $hasNVim := promptBool "Do i install Neovim " false}}
{{ $hasLVim := promptBool "Do i install LunarVim " false }}
{{ $hasLatex := promptBool "Do i install latex " false }}
{{ $hasLatex := promptBool "Do i install LaTeX " false }}
{{ $hasCode := promptBool "Do i install VSCode " false }}
{{ $hasQuarto := promptBool "Do i install Quarto " false }}
[git]
autoCommit = true
autoPush = true
@@ -14,6 +16,8 @@ autoPush = true
hasNVim = {{ $hasNVim }}
hasLVim = {{ $hasLVim }}
hasLatex = {{ $hasLatex }}
hasCode = {{ $hasCode }}
hasQuarto = {{ $hasQuarto }}
email = {{ $email | quote }}
signinkey = {{ $signinkey | quote }}

View File

@@ -19,6 +19,14 @@ args="--base --zsh"
args="${args} --latex"
{{- end }}
{{- if (ne .hasCode false) }}
args="${args} --vscode"
{{- end }}
{{- if (ne .hasQuarto false) }}
args="${args} --quarto"
{{- end }}
{{ if (eq .chezmoi.os "linux") -}}
{{ if (eq .chezmoi.osRelease.id "manjaro" "arch") -}}