summaryrefslogtreecommitdiffstats
path: root/src/configs/aws.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configs/aws.rs')
-rw-r--r--src/configs/aws.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configs/aws.rs b/src/configs/aws.rs
index 2c9589508..a4dc4ca71 100644
--- a/src/configs/aws.rs
+++ b/src/configs/aws.rs
@@ -7,6 +7,7 @@ use starship_module_config_derive::ModuleConfig;
pub struct AwsConfig<'a> {
pub symbol: SegmentConfig<'a>,
pub profile: SegmentConfig<'a>,
+ pub region: SegmentConfig<'a>,
pub style: Style,
pub disabled: bool,
}
@@ -16,6 +17,7 @@ impl<'a> RootModuleConfig<'a> for AwsConfig<'a> {
AwsConfig {
symbol: SegmentConfig::new("☁️ "),
profile: SegmentConfig::default(),
+ region: SegmentConfig::default(),
style: Color::Yellow.bold(),
disabled: false,
}