From 0df28397f7a5bcf76a04a890b782d9ebf2e99469 Mon Sep 17 00:00:00 2001 From: nobv <36393714+nobv@users.noreply.github.com> Date: Mon, 13 Jul 2026 10:32:42 +0900 Subject: [PATCH] fix(cship): color unknown models like Fable via fallback style --- modules/ai/claude-code/cship.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/ai/claude-code/cship.toml b/modules/ai/claude-code/cship.toml index 88d735f3..f09e0468 100644 --- a/modules/ai/claude-code/cship.toml +++ b/modules/ai/claude-code/cship.toml @@ -29,8 +29,10 @@ critical_style = "bold red" [cship.model] # Starship defaults clash with plain color names here: directory=bold cyan, # git_branch=bold purple, git_status=bold red. Use truecolor hex to stay distinct. +# `style` also covers models cship doesn't know yet (e.g. Fable/Mythos) until +# https://github.com/stephenleo/cship/pull/195 lands with dedicated *_style keys. format = "[Model: $value]($style)" -style = "bold" +style = "bold fg:#bb9af7" haiku_style = "bold fg:#9ece6a" sonnet_style = "bold fg:#7aa2f7" opus_style = "bold fg:#e0af68"