1
0

Added Neovim

This commit is contained in:
2025-10-13 10:23:32 +02:00
parent 6329e7230d
commit cb18dae665
7 changed files with 28 additions and 4 deletions

View File

@@ -1,8 +1,9 @@
{{- $email := promptStringOnce . "email" "What's your email?" }}
{{- $git_name := promptStringOnce . "git_name" "What's your Git name?" }}
{{- $email := promptStringOnce . "email" "What's your email" }}
{{- $git_name := promptStringOnce . "git_name" "What's your Git name" }}
{{- $shell := promptBoolOnce . "features.shell" "Do you want to install the Fish shell?" true }}
{{- $git := promptBoolOnce . "features.git" "Do you want to install Git?" true }}
{{- $shell := promptBoolOnce . "features.shell" "Do you want to install the Fish shell" true }}
{{- $git := promptBoolOnce . "features.git" "Do you want to install Git" true }}
{{- $editor := promptBoolOnce . "features.editor" "Do you want to install Neovim" true }}
[data]
email = {{ $email | quote }}
@@ -11,3 +12,4 @@ git_name = {{ $git_name | quote }}
[data.features]
shell = {{ $shell }}
git = {{ $git }}
editor = {{ $editor }}