From 16977202b9784fbafc4b95a1a9f4fbed692e67e2 Mon Sep 17 00:00:00 2001 From: Heavy Date: Mon, 9 Jun 2025 17:32:35 +0200 Subject: [PATCH] (chezmoi): Add prompt type to chezmoi config file. --- .chezmoi.toml.tmpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.chezmoi.toml.tmpl b/.chezmoi.toml.tmpl index 154a0ad..85afefb 100644 --- a/.chezmoi.toml.tmpl +++ b/.chezmoi.toml.tmpl @@ -3,6 +3,7 @@ {{- $category := promptString "Server category" -}} {{- $color := promptString "Prompt color (see https://unix.stackexchange.com/questions/269077/tput-setaf-color-table-how-to-determine-color-codes)" -}} {{- $vimexec := promptString "Which vi executable to use? (vi, vim, nvim)" -}} +{{- $promptType := promptString "Which prompt to use? (starship, oh-my-posh, none)" -}} [data] name = "{{ $name }}" email = "{{ $email }}" @@ -10,3 +11,4 @@ bash.prompt.category = "{{ $category }}" bash.prompt.color = "{{ $color }}" + bash.prompt.type = "{{ $promptType }}"