From 45a66c14fb67d8e4889d00424faab0fdc4534603 Mon Sep 17 00:00:00 2001 From: clux Date: Mon, 5 Aug 2024 13:38:03 +0100 Subject: [PATCH] starship: update context patterns Signed-off-by: clux --- config/starship.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/starship.toml b/config/starship.toml index 5243b91..50bfb0c 100644 --- a/config/starship.toml +++ b/config/starship.toml @@ -76,9 +76,9 @@ detect_files = ["Cargo.toml", "Chart.yaml"] # maybe rust detection is better? style = "bg:black 117" format = '[[$symbol](bg:black 251)${context}[󰛢](bg:black bold white)${namespace}]($style)' contexts = [ - { context_pattern = "prod.*", context_alias = "prod", style = "bg:black 204" }, - { context_pattern = "sandbox.*", context_alias = "sbx" }, - { context_pattern = "dev.*", context_alias = "dev" }, + { context_pattern = "legacy-prod.*", context_alias = "prod", style = "bg:black 204" }, + { context_pattern = "legacy-sandbox.*", context_alias = "sbx" }, + { context_pattern = "legacy-dev.*", context_alias = "dev" }, { context_pattern = ".*eks-dev.*", context_alias = "eks-dev" }, { context_pattern = ".*eks-sandbox.*", context_alias = "eks-sbx" }, { context_pattern = ".*eks-production.*", context_alias = "eks-prod", style = "bg:black 204" },