summaryrefslogtreecommitdiffstats
path: root/src/configs/aws.rs
diff options
context:
space:
mode:
authorThomas O'Donnell <andytom@users.noreply.github.com>2019-10-14 14:56:16 +0100
committerMatan Kushner <hello@matchai.me>2019-10-14 22:56:16 +0900
commita18408e30c023037d4b30c760fb9027041f4d20e (patch)
treed56d7267f0b0c7022477bb617f9f786436cb6152 /src/configs/aws.rs
parent4d1f0b6c6f6c8e2a905fa5fe33c54cc1e8a6acba (diff)
fix: Fix the spacing around the AWS default symbol (#529)
This updates the default AWS default symbol to include a space after the symbol to make it a little bit more readable. Have also updated the README to include the AWS module.
Diffstat (limited to 'src/configs/aws.rs')
-rw-r--r--src/configs/aws.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configs/aws.rs b/src/configs/aws.rs
index f362d0878..2c9589508 100644
--- a/src/configs/aws.rs
+++ b/src/configs/aws.rs
@@ -14,7 +14,7 @@ pub struct AwsConfig<'a> {
impl<'a> RootModuleConfig<'a> for AwsConfig<'a> {
fn new() -> Self {
AwsConfig {
- symbol: SegmentConfig::new("☁️ "),
+ symbol: SegmentConfig::new("☁️ "),
profile: SegmentConfig::default(),
style: Color::Yellow.bold(),
disabled: false,